Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion openaev-front/src/utils/Environment.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,9 @@ export const APP_BASE_PATH = isEmptyPath || contextPath.startsWith('/') ? contex
export const fileUri = fileImport => `${APP_BASE_PATH}${fileImport}`; // No slash here, will be replaced by the builder

// Export
const escape = value => value?.toString().replaceAll('"', '""');
const escape = value => value?.toString()
.replaceAll('"', '""')
.replaceAll('\n', '\\n');
export const exportData = (
type,
keys,
Expand Down