From 0fc978de458aa94d9d62158bf730d7c33944d6f7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ky=E2=84=93e=20Hensel?= Date: Mon, 17 Feb 2025 21:13:52 +1100 Subject: [PATCH] remove leading semicolon from changeset `source` (#9887) --- modules/ui/commit.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/ui/commit.js b/modules/ui/commit.js index 59cbdaf81..a780a2056 100644 --- a/modules/ui/commit.js +++ b/modules/ui/commit.js @@ -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 });