mirror of
https://github.com/FoggedLens/iD.git
synced 2026-05-15 13:38:26 +02:00
Don't add "None" to imagery_used tag when other imagery was used
(closes #5565)
This commit is contained in:
@@ -92,7 +92,9 @@ export function uiCommit(context) {
|
||||
}
|
||||
|
||||
tags = _clone(_changeset.tags);
|
||||
tags.imagery_used = context.history().imageryUsed().join(';').substr(0, 255);
|
||||
|
||||
var imageryUsed = context.history().imageryUsed().join(';').substr(0, 255);
|
||||
tags.imagery_used = imageryUsed || 'None';
|
||||
_changeset = _changeset.update({ tags: tags });
|
||||
|
||||
var header = selection.selectAll('.header')
|
||||
|
||||
Reference in New Issue
Block a user