1
0
Fork 0
mirror of synced 2024-07-05 06:20:55 +12:00

Properly key each app card

This commit is contained in:
Andrew Kingston 2021-05-10 12:36:32 +01:00
parent 04dc9ca175
commit 99ff417aa8

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}