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,6 +63,18 @@
} }
</script> </script>
{#if 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}
{:else}
<span {lang}> <span {lang}>
{#each specs as specpart} {#each specs as specpart}
{#if typeof specpart === "string"} {#if typeof specpart === "string"}
@ -75,3 +87,4 @@
{/if} {/if}
{/each} {/each}
</span> </span>
{/if}