Skip to content
Snippets Groups Projects
Commit 1f50714f authored by Reiter, Christoph's avatar Reiter, Christoph :snake:
Browse files

CSV Export: Make the separator depend on the current langauge

Better than nothing
parent 51b090c5
No related branches found
No related tags found
No related merge requests found
...@@ -104,7 +104,7 @@ class DataTableView extends LitElement { ...@@ -104,7 +104,7 @@ class DataTableView extends LitElement {
className: 'button is-small', className: 'button is-small',
charset: 'UTF-8', charset: 'UTF-8',
bom: true, bom: true,
fieldSeparator: ';' fieldSeparator: this.lang === 'en' ? ',' : ';'
}, },
{ {
extend: 'excelHtml5', extend: 'excelHtml5',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment