mirror of
https://github.com/FoggedLens/iD.git
synced 2026-03-08 04:11:23 +00:00
remove leading semicolon from changeset source (#9887)
This commit is contained in:
@@ -123,7 +123,7 @@ export function uiCommit(context) {
|
||||
}
|
||||
});
|
||||
|
||||
tags.source = context.cleanTagValue(sources.join(';'));
|
||||
tags.source = context.cleanTagValue(sources.filter(Boolean).join(';'));
|
||||
}
|
||||
|
||||
context.changeset = new osmChangeset({ tags: tags });
|
||||
|
||||
Reference in New Issue
Block a user