We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3ca5039 commit 654b695Copy full SHA for 654b695
openaev-front/src/utils/Environment.js
@@ -43,7 +43,9 @@ export const APP_BASE_PATH = isEmptyPath || contextPath.startsWith('/') ? contex
43
export const fileUri = fileImport => `${APP_BASE_PATH}${fileImport}`; // No slash here, will be replaced by the builder
44
45
// Export
46
-const escape = value => value?.toString().replaceAll('"', '""');
+const escape = value => value?.toString()
47
+ .replaceAll('"', '""')
48
+ .replaceAll('\n', '\\n');
49
export const exportData = (
50
type,
51
keys,
0 commit comments