mirror of
https://github.com/FoggedLens/iD.git
synced 2026-02-13 01:02:58 +00:00
Fix issue where crossing ways layer fix would set layer tag as a number instead of a string (re: #6911)
This commit is contained in:
@@ -650,7 +650,7 @@ export function validationCrossingWays(context) {
|
||||
layer = -1;
|
||||
}
|
||||
}
|
||||
tags.layer = layer;
|
||||
tags.layer = layer.toString();
|
||||
context.perform(
|
||||
actionChangeTags(entity.id, tags),
|
||||
t('operations.change_tags.annotation')
|
||||
|
||||
Reference in New Issue
Block a user