diff --git a/packages/frontend-core/src/components/grid/lib/utils.js b/packages/frontend-core/src/components/grid/lib/utils.js index 8e65e8a43f..b6bbd76c04 100644 --- a/packages/frontend-core/src/components/grid/lib/utils.js +++ b/packages/frontend-core/src/components/grid/lib/utils.js @@ -1,6 +1,8 @@ import { TypeIconMap } from "../../../constants" -const JOINING_CHARACTER = "——" +// we can't use "-" for joining the ID/field, as this can be present in the ID or column name +// using something very unusual to avoid this problem +const JOINING_CHARACTER = "‽‽" export const splitRowId = rowId => { if (!rowId) {