fix(dashboard): fix deleting items not updating list

This commit is contained in:
Jake/Rads 2022-06-30 16:24:41 +02:00
parent 1bdee69c9b
commit 032c601ec3

View File

@ -131,6 +131,6 @@
<NewGroup on:create={addItemToList} />
{/if}
{/if}
<CardsList on:deletion bind:list={slicedList} bind:groups bind:members isPublic={isPublic} itemType={itemType} itemsPerPage={itemsPerPage} currentPage={currentPage} fullLength={list.length} />
<CardsList on:deletion={updateDelete} bind:list={slicedList} bind:groups bind:members isPublic={isPublic} itemType={itemType} itemsPerPage={itemsPerPage} currentPage={currentPage} fullLength={list.length} />
<ListPagination bind:currentPage {pageAmount} />
{/if}