fix: only load buckets if listId set (#2741)
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
Co-authored-by: Dominik Pschenitschni <mail@celement.de> Reviewed-on: #2741 Co-authored-by: Dominik Pschenitschni <dpschen@noreply.kolaente.de> Co-committed-by: Dominik Pschenitschni <dpschen@noreply.kolaente.de>
This commit is contained in:
parent
59cc241226
commit
7db79ff04e
@ -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})
|
||||
},
|
||||
|
Reference in New Issue
Block a user