mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 09:19:04 -04:00
Specifying the utf-8 charset when exporting aggregate tables
This commit is contained in:
parent
ab5f6cbd31
commit
729bb9a9e4
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue