diff --git a/frontend/components/Domain/Recipe/RecipeDialogAddToShoppingList.vue b/frontend/components/Domain/Recipe/RecipeDialogAddToShoppingList.vue index 193f13928..d7a57ce8f 100644 --- a/frontend/components/Domain/Recipe/RecipeDialogAddToShoppingList.vue +++ b/frontend/components/Domain/Recipe/RecipeDialogAddToShoppingList.vue @@ -3,8 +3,7 @@ { + return props.shoppingLists.filter((list) => state.showAll || list.userId === $auth.user?.id); + }); + const recipeIngredientSections = ref([]); const selectedShoppingList = ref(null); @@ -348,6 +351,7 @@ export default defineComponent({ return { dialog, + shoppingListChoices, ...toRefs(state), addRecipesToList, bulkCheckIngredients, diff --git a/frontend/pages/shopping-lists/index.vue b/frontend/pages/shopping-lists/index.vue index 3945e7ad4..19ac10db8 100644 --- a/frontend/pages/shopping-lists/index.vue +++ b/frontend/pages/shopping-lists/index.vue @@ -1,5 +1,5 @@