mirror of
https://github.com/ClusterCockpit/cc-backend
synced 2024-11-13 02:17:25 +01:00
fix: wrong display of tag after filter select
- exitent pills were non-updated on change of key
This commit is contained in:
parent
e02575aad7
commit
2551921ed6
@ -322,7 +322,9 @@
|
|||||||
{#if filters.tags.length != 0}
|
{#if filters.tags.length != 0}
|
||||||
<Info icon="tags" on:click={() => (isTagsOpen = true)}>
|
<Info icon="tags" on:click={() => (isTagsOpen = true)}>
|
||||||
{#each filters.tags as tagId}
|
{#each filters.tags as tagId}
|
||||||
<Tag id={tagId} clickable={false} />
|
{#key tagId}
|
||||||
|
<Tag id={tagId} clickable={false} />
|
||||||
|
{/key}
|
||||||
{/each}
|
{/each}
|
||||||
</Info>
|
</Info>
|
||||||
{/if}
|
{/if}
|
||||||
|
Loading…
Reference in New Issue
Block a user