From ce55b4c7d8659044b93a03afaaa37d272a6b48ab Mon Sep 17 00:00:00 2001 From: Pieter Vander Vennet Date: Thu, 23 Nov 2023 16:00:14 +0100 Subject: [PATCH] Fix: fix link image action --- src/UI/Popup/LinkableImage.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/UI/Popup/LinkableImage.svelte b/src/UI/Popup/LinkableImage.svelte index c81a7ac5ea..fb8710dc88 100644 --- a/src/UI/Popup/LinkableImage.svelte +++ b/src/UI/Popup/LinkableImage.svelte @@ -42,7 +42,7 @@ const key = Object.keys(image.osmTags)[0] const url = image.osmTags[key] if (isLinked) { - const action = new LinkImageAction(currentTags.id, key, url, currentTags, { + const action = new LinkImageAction(currentTags.id, key, url, tags, { theme: state.layout.id, changeType: "link-image", })