keyed app object list (hopefully fixed CRASH in svelte)

This commit is contained in:
Jan Prochazka
2021-09-25 12:58:28 +02:00
parent b503ea9a02
commit da5b96c0a8
2 changed files with 3 additions and 3 deletions

View File

@@ -54,7 +54,7 @@
</script>
{#if groupFunc}
{#each _.keys(groups) as group}
{#each _.keys(groups) as group (group)}
<AppObjectGroup
{group}
{module}
@@ -69,7 +69,7 @@
/>
{/each}
{:else}
{#each filtered as data}
{#each filtered as data (module.extractKey(data))}
<AppObjectListItem
{module}
{subItemsComponent}