Skip to content

Commit ac2c89e

Browse files
committed
Merge pull request #5136 from dennym/fix-for-5130
fix(exporter): remove coma since we use set columnseperator or default,addition to #5130
2 parents ee48d70 + d0e40eb commit ac2c89e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/features/exporter/js/exporter.js

Lines changed: 1 addition & 1 deletion
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)