From d175490c55936cd15740245b0cacd4e08c3f391b Mon Sep 17 00:00:00 2001 From: jableader Date: Sun, 19 May 2024 22:20:29 +1000 Subject: [PATCH] Stocktaking off by default --- src/components/shopping/FullShoppingListPage.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/shopping/FullShoppingListPage.vue b/src/components/shopping/FullShoppingListPage.vue index 28c2bf1..63d1b7b 100644 --- a/src/components/shopping/FullShoppingListPage.vue +++ b/src/components/shopping/FullShoppingListPage.vue @@ -55,7 +55,7 @@ export default { const to = new Date(); to.setDate(to.getDate() + 7); - return { from, to, availableMeals: [], shoppingList: null, includedMeals: [], listByProduct: [], stockTaking: true, productsToShow: []} + return { from, to, availableMeals: [], shoppingList: null, includedMeals: [], listByProduct: [], stockTaking: false, productsToShow: []} }, async beforeMount() { this.availableMeals = await data.getMeals(this.from, this.to);