1
0
mirror of https://github.com/ClusterCockpit/cc-backend synced 2025-07-26 06:06:15 +02:00

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

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