fix: better kanban updateBucket types

This commit is contained in:
Dominik Pschenitschni 2022-10-17 15:32:43 +02:00
parent 35f4bb1385
commit 964aba4824
Signed by: dpschen
GPG Key ID: B257AC0149F43A77
1 changed files with 1 additions and 1 deletions

View File

@ -364,7 +364,7 @@ export const useKanbanStore = defineStore('kanban', {
}
},
async updateBucket(updatedBucketData: IBucket) {
async updateBucket(updatedBucketData: Partial<IBucket>) {
const cancel = setModuleLoading(this)
const bucketIndex = findIndexById(this.buckets, updatedBucketData.id)