mirror of
https://github.com/FoggedLens/iD.git
synced 2026-03-12 22:26:07 +00:00
Clean roadheight value after concatenation
This commit is contained in:
@@ -141,12 +141,12 @@ export function uiFieldRoadheight(field, context) {
|
||||
tag[field.key] = context.cleanTagValue(rawPrimaryValue);
|
||||
} else {
|
||||
if (rawPrimaryValue !== '') {
|
||||
rawPrimaryValue = context.cleanTagValue(rawPrimaryValue + '\'');
|
||||
rawPrimaryValue = rawPrimaryValue + '\'';
|
||||
}
|
||||
if (rawSecondaryValue !== '') {
|
||||
rawSecondaryValue = context.cleanTagValue(rawSecondaryValue + '"');
|
||||
rawSecondaryValue = rawSecondaryValue + '"';
|
||||
}
|
||||
tag[field.key] = rawPrimaryValue + rawSecondaryValue;
|
||||
tag[field.key] = context.cleanTagValue(rawPrimaryValue + rawSecondaryValue);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user