fix: wrong display of tag after filter select

- exitent pills were non-updated on change of key
This commit is contained in:
Christoph Kluge 2024-08-02 18:14:24 +02:00
parent e02575aad7
commit 2551921ed6

View File

@ -322,7 +322,9 @@
{#if filters.tags.length != 0}
<Info icon="tags" on:click={() => (isTagsOpen = true)}>
{#each filters.tags as tagId}
<Tag id={tagId} clickable={false} />
{#key tagId}
<Tag id={tagId} clickable={false} />
{/key}
{/each}
</Info>
{/if}