feat: improved types #2547

Merged
konrad merged 17 commits from dpschen/frontend:feature/improved-types into main 2022-11-02 16:06:57 +00:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit 964aba4824 - Show all commits

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)