Skip to content

Commit

Permalink
Merge pull request #97 from oatear/feature/add-quotes-to-csv-export
Browse files Browse the repository at this point in the history
Add quotes to the CSV export
  • Loading branch information
hristoiankov authored Jan 16, 2024
2 parents 214a729 + 1621cd7 commit 46e1fab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cider-app/src/app/shared/utils/xlsx-utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export default class XlsxUtils {
});
XLSX.utils.sheet_add_aoa(worksheet, [values], {origin: -1});
});
const csv = XLSX.utils.sheet_to_csv(worksheet);
const csv = XLSX.utils.sheet_to_csv(worksheet, {forceQuotes: true});
return csv;
}

Expand Down

0 comments on commit 46e1fab

Please sign in to comment.