From 9ddb55a5efa8851427b71aff6f478e695bea1687 Mon Sep 17 00:00:00 2001 From: kolaente Date: Wed, 20 Jul 2022 17:18:27 +0200 Subject: [PATCH] fix: vuex state mutation error when moving a kanban bucket --- src/store/modules/kanban.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/store/modules/kanban.ts b/src/store/modules/kanban.ts index a5e939918d..0378d9aa29 100644 --- a/src/store/modules/kanban.ts +++ b/src/store/modules/kanban.ts @@ -318,7 +318,7 @@ export default { const oldBucket = cloneDeep(ctx.state.buckets[bucketIndex]) const updatedBucket = { - ...ctx.state.buckets[bucketIndex], + ...oldBucket, ...updatedBucketData, }