From aad31f649e733d108c63297aa6d25bf87ac73c34 Mon Sep 17 00:00:00 2001 From: Pieter Vander Vennet Date: Thu, 13 Jun 2024 21:02:36 +0200 Subject: [PATCH] Fix: show add new point fullscreen again --- .../TagRendering/SpecialTranslation.svelte | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/src/UI/Popup/TagRendering/SpecialTranslation.svelte b/src/UI/Popup/TagRendering/SpecialTranslation.svelte index 12765bc376..3149a721fb 100644 --- a/src/UI/Popup/TagRendering/SpecialTranslation.svelte +++ b/src/UI/Popup/TagRendering/SpecialTranslation.svelte @@ -63,7 +63,7 @@ } - +{#if lang === "*"} {#each specs as specpart} {#if typeof specpart === "string"} @@ -74,4 +74,17 @@ createVisualisation(specpart)} /> {/if} {/each} - +{:else} + + {#each specs as specpart} + {#if typeof specpart === "string"} + + {@html Utils.purify(Utils.SubstituteKeys(specpart, $tags)) } + + + {:else if $tags !== undefined} + createVisualisation(specpart)} /> + {/if} + {/each} + +{/if}