From 964aba4824418e431955881be284e35f412e873b Mon Sep 17 00:00:00 2001 From: Dominik Pschenitschni Date: Mon, 17 Oct 2022 15:32:43 +0200 Subject: [PATCH] fix: better kanban updateBucket types --- src/stores/kanban.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stores/kanban.ts b/src/stores/kanban.ts index 25583a0e4..76d29dfe2 100644 --- a/src/stores/kanban.ts +++ b/src/stores/kanban.ts @@ -364,7 +364,7 @@ export const useKanbanStore = defineStore('kanban', { } }, - async updateBucket(updatedBucketData: IBucket) { + async updateBucket(updatedBucketData: Partial) { const cancel = setModuleLoading(this) const bucketIndex = findIndexById(this.buckets, updatedBucketData.id)