Skip to content

Commit d0e40eb

Browse files
author
Denny Mueller
committed
fix(exporter): remove coma since we use set columnseperator or
default,addition to #5130
1 parent ee48d70 commit d0e40eb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/features/exporter/js/exporter.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -931,7 +931,7 @@
931931
document.body.appendChild(frame);
932932

933933
frame.contentWindow.document.open('text/html', 'replace');
934-
frame.contentWindow.document.write('sep=,' + columnSeparator + '\r\n' + csvContent);
934+
frame.contentWindow.document.write('sep=' + columnSeparator + '\r\n' + csvContent);
935935
frame.contentWindow.document.close();
936936
frame.contentWindow.focus();
937937
frame.contentWindow.document.execCommand('SaveAs', true, fileName);

0 commit comments

Comments
 (0)