diff --git a/frontend/src/components/files/CsvViewer.vue b/frontend/src/components/files/CsvViewer.vue index 9e1904af..5f50bbf3 100644 --- a/frontend/src/components/files/CsvViewer.vue +++ b/frontend/src/components/files/CsvViewer.vue @@ -138,7 +138,11 @@ watchEffect(() => { : props.content; parse( content as string, - { delimiter: columnSeparator.value, skip_empty_lines: true }, + { + delimiter: columnSeparator.value, + skip_empty_lines: true, + relax_column_count: true, + }, (error, output) => { if (error) { console.error("Failed to parse CSV:", error);