1
0
Fork 0
mirror of synced 2024-06-30 12:00:31 +12:00

Properly key each app card

This commit is contained in:
Andrew Kingston 2021-05-10 12:36:32 +01:00
parent 49c12cf80a
commit b3877a5031

View file

@ -112,7 +112,7 @@
class:appGrid={layout === "grid"}
class:appTable={layout === "table"}
>
{#each $apps as app, idx}
{#each $apps as app, idx (app._id)}
<svelte:component
this={layout === "grid" ? AppCard : AppRow}
{app}