Fix alltags panel

This commit is contained in:
Pieter Vander Vennet 2024-05-21 01:40:58 +02:00
parent 729d6b974f
commit d3dc81d1c2

View file

@ -13,7 +13,7 @@
*/ */
let calculatedTags: string[] = [] let calculatedTags: string[] = []
for (const calculated of layer?.calculatedTags ?? []) { for (const calculated of layer?.calculatedTags ?? []) {
if (calculated) { if (!calculated) {
continue continue
} }
const name = calculated[0] const name = calculated[0]
@ -69,7 +69,7 @@
{:else if $tags[key] === ""} {:else if $tags[key] === ""}
<i>Empty string</i> <i>Empty string</i>
{:else if $tags[key] !== "string"} {:else if $tags[key] !== "string"}
<span class="literal-code">{$tags[key]}</span> <span class="literal-code">{JSON.stringify($tags[key])}</span>
<i>{typeof $tags[key]}</i> <i>{typeof $tags[key]}</i>
{:else} {:else}
{$tags[key]} {$tags[key]}