Fix: show add new point fullscreen again

This commit is contained in:
Pieter Vander Vennet 2024-06-13 21:02:36 +02:00
parent 7ef1628d87
commit aad31f649e

View file

@ -63,7 +63,7 @@
}
</script>
<span {lang}>
{#if lang === "*"}
{#each specs as specpart}
{#if typeof specpart === "string"}
<span>
@ -74,4 +74,17 @@
<ToSvelte construct={() => createVisualisation(specpart)} />
{/if}
{/each}
</span>
{:else}
<span {lang}>
{#each specs as specpart}
{#if typeof specpart === "string"}
<span>
{@html Utils.purify(Utils.SubstituteKeys(specpart, $tags)) }
<WeblateLink context={t.context} />
</span>
{:else if $tags !== undefined}
<ToSvelte construct={() => createVisualisation(specpart)} />
{/if}
{/each}
</span>
{/if}