From 05b74799e4f8f79e0617d6f2e68aef084bb33006 Mon Sep 17 00:00:00 2001 From: Cameron Pickle Date: Sun, 6 Jul 2025 09:09:32 -0600 Subject: [PATCH] feat: Add delete option to the recipe card context menu for easier deletion of recipies --- frontend/components/Domain/Recipe/RecipeCard.vue | 2 +- frontend/components/Domain/Recipe/RecipeCardMobile.vue | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/components/Domain/Recipe/RecipeCard.vue b/frontend/components/Domain/Recipe/RecipeCard.vue index ac93a8472..6e0cb5f53 100644 --- a/frontend/components/Domain/Recipe/RecipeCard.vue +++ b/frontend/components/Domain/Recipe/RecipeCard.vue @@ -82,7 +82,7 @@ :name="name" :recipe-id="recipeId" :use-items="{ - delete: false, + delete: true, edit: false, download: true, mealplanner: true, diff --git a/frontend/components/Domain/Recipe/RecipeCardMobile.vue b/frontend/components/Domain/Recipe/RecipeCardMobile.vue index c6c0cdbec..5da65c995 100644 --- a/frontend/components/Domain/Recipe/RecipeCardMobile.vue +++ b/frontend/components/Domain/Recipe/RecipeCardMobile.vue @@ -103,7 +103,7 @@ :recipe-id="recipeId" class="ml-auto" :use-items="{ - delete: false, + delete: true, edit: false, download: true, mealplanner: true,