Skip to content

Commit 3d20a9a

Browse files
use correct separator symbol
1 parent 84583ce commit 3d20a9a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/editor/components/StopAreasSelector.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ const StopAreasSelector = ({ currentValue, areas, processFieldChange, stops }: P
3434

3535
// Filter out the entityId and join remaining items with ';'
3636
const filtered = currentValue.filter(id => id !== entityId)
37-
const newValue = filtered.length > 1 ? filtered.join(';') : (filtered[0] || '')
37+
const newValue = filtered.length > 1 ? filtered.join('§') : (filtered[0] || '')
3838
processFieldChange(newValue)
3939
}
4040

0 commit comments

Comments
 (0)