diff --git a/dashboard/src/components/list/CardView.svelte b/dashboard/src/components/list/CardView.svelte index 9c568d7b..e3c34f5d 100644 --- a/dashboard/src/components/list/CardView.svelte +++ b/dashboard/src/components/list/CardView.svelte @@ -49,7 +49,7 @@ {#if pageOptions.type === "member"} - {#each currentList as item (item.uuid)} + {#each currentList as item, index (pageOptions.randomized ? item.uuid + '-' + index : item.uuid)}
{/each} {:else if pageOptions.type === "group"} - {#each currentList as item (item.uuid)} + {#each currentList as item, index (pageOptions.randomized ? item.uuid + '-' + index : item.uuid)}