mirror of
https://github.com/FoggedLens/iD.git
synced 2026-02-13 01:02:58 +00:00
Fix use of double quotes
This commit is contained in:
@@ -265,7 +265,7 @@ export default {
|
||||
if (data.entities) {
|
||||
data.entities.forEach(feature => {
|
||||
const { point, id, segments, numberOfPasses, turnType } = feature;
|
||||
const itemId = `${id.replace(/[,:+#]/g, "_")}`;
|
||||
const itemId = `${id.replace(/[,:+#]/g, '_')}`;
|
||||
|
||||
// Turn restrictions could be missing at same junction
|
||||
// We also want to bump the error up so node is accessible
|
||||
|
||||
Reference in New Issue
Block a user