fix: only load buckets if listId set

This commit is contained in:
Dominik Pschenitschni 2022-11-22 12:44:38 +01:00
parent 9cfc14773b
commit 21febe0b88
Signed by: dpschen
GPG Key ID: B257AC0149F43A77
1 changed files with 4 additions and 1 deletions

View File

@ -1,5 +1,5 @@
<template>
<ListWrapper
<ListWrapper
class="list-kanban"
:list-id="listId"
viewName="kanban"
@ -344,6 +344,9 @@ watch(
params: params.value,
}),
({listId, params}) => {
if (listId === undefined) {
return
}
collapsedBuckets.value = getCollapsedBucketState(listId)
kanbanStore.loadBucketsForList({listId, params})
},