From 8827e6f453da06ee61fb841a006d3e56e8373ad4 Mon Sep 17 00:00:00 2001 From: vabene1111 Date: Thu, 27 Mar 2025 18:35:18 +0100 Subject: [PATCH] fixed shopping undo hanging until auto refresh --- vue3/src/stores/ShoppingStore.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/vue3/src/stores/ShoppingStore.ts b/vue3/src/stores/ShoppingStore.ts index f00fdfd2c..8c42dfa36 100644 --- a/vue3/src/stores/ShoppingStore.ts +++ b/vue3/src/stores/ShoppingStore.ts @@ -416,6 +416,7 @@ export const useShoppingStore = defineStore(_STORE_ID, () => { entry.ids.forEach(id => { let e = entries.value.get(id) e.updatedAt = r.timestamp + e.checked = r.checked entries.value.set(id, e) }) itemCheckSyncQueue.value.splice(index, 1)