Skip to content

Commit

Permalink
Specifying the utf-8 charset when exporting aggregate tables
Browse files Browse the repository at this point in the history
  • Loading branch information
kobelb committed Oct 13, 2016
1 parent ab5f6cb commit 729bb9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ui/public/agg_table/agg_table.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ uiModules
};

self.exportAsCsv = function (formatted) {
let csv = new Blob([self.toCsv(formatted)], { type: 'text/plain' });
let csv = new Blob([self.toCsv(formatted)], { type: 'text/plain;charset=UTF-8;' });
self._saveAs(csv, self.csv.filename);
};

Expand Down

0 comments on commit 729bb9a

Please sign in to comment.