Skip to content

Commit

Permalink
fix(exporter): remove coma since we use set columnseperator or
Browse files Browse the repository at this point in the history
default,addition to #5130
  • Loading branch information
Denny Mueller committed Feb 18, 2016
1 parent ee48d70 commit d0e40eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/features/exporter/js/exporter.js
Expand Up @@ -931,7 +931,7 @@
document.body.appendChild(frame);

frame.contentWindow.document.open('text/html', 'replace');
frame.contentWindow.document.write('sep=,' + columnSeparator + '\r\n' + csvContent);
frame.contentWindow.document.write('sep=' + columnSeparator + '\r\n' + csvContent);
frame.contentWindow.document.close();
frame.contentWindow.focus();
frame.contentWindow.document.execCommand('SaveAs', true, fileName);
Expand Down

0 comments on commit d0e40eb

Please sign in to comment.