We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 88ef274 commit 22d1652Copy full SHA for 22d1652
packages/data_export/src/export/export.ts
@@ -217,7 +217,7 @@ function entryToCSVRow(entry: any[]) {
217
.map((v: any) => {
218
if (v === null || v === undefined) return "";
219
if (Array.isArray(v))
220
- return "\"" + JSON.stringify(v).replaceAll("\"", "\\\"") + "\"";
+ return "\"" + JSON.stringify(v).replaceAll("\"", "\"\"") + "\"";
221
const s = String(v);
222
return "\"" + s.replaceAll("\"", "\"\"") + "\"";
223
})
0 commit comments