diff --git a/public/js/pages/DashboardNew/DashboardNew.js b/public/js/pages/DashboardNew/DashboardNew.js index fa80d9671..e7ebf9043 100644 --- a/public/js/pages/DashboardNew/DashboardNew.js +++ b/public/js/pages/DashboardNew/DashboardNew.js @@ -211,7 +211,7 @@ Vue.component('dashboard-default', { const csv = [ ['Datum', 'Bestellungen', 'Leerrohr', 'ONT installiert'], ...data.map(item => [item.date, item.bestellungen, item.leerrohr, item.ont_installiert]) - ].map(row => row.join(',')).join('\n'); + ].map(row => row.join(';')).join('\n'); const blob = new Blob([csv], {type: 'text/csv'}); const url = URL.createObjectURL(blob); @@ -413,7 +413,7 @@ Vue.component('dashboard-rml', { const csv = [ ['Datum', 'Bestellungen', 'Leerrohr', 'ONT installiert'], ...data.map(item => [item.date, item.bestellungen, item.leerrohr, item.ont_installiert]) - ].map(row => row.join(',')).join('\n'); + ].map(row => row.join(';')).join('\n'); const blob = new Blob([csv], {type: 'text/csv'}); const url = URL.createObjectURL(blob);