Fixed exported CSV delimiter to comma for easier opening
This commit is contained in:
parent
89588201bd
commit
1646b5dd2d
|
|
@ -637,6 +637,6 @@ function downloadCsv() {
|
|||
}
|
||||
const headers = Object.keys(overlapCsvData[0]);
|
||||
const rows = overlapCsvData.map(row => headers.map(h => row[h]).join(';'));
|
||||
const csvContent = [headers.join(';')].concat(rows).join('\n');
|
||||
const csvContent = [headers.join(',')].concat(rows).join('\n');
|
||||
downloadText(csvContent, `${originalFileName}_overlap_details.csv`);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue