From b4f07f9d62a7bc96c69c94406cc34121dccaa20d Mon Sep 17 00:00:00 2001 From: Michael Genson <71845777+michael-genson@users.noreply.github.com> Date: Fri, 21 Jun 2024 16:42:05 -0500 Subject: [PATCH] fix: Prevent Dragging Ingredients to Instructions and Vice Versa (#3770) --- .../RecipePage/RecipePageParts/RecipePageIngredientEditor.vue | 2 +- .../RecipePage/RecipePageParts/RecipePageInstructions.vue | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/components/Domain/Recipe/RecipePage/RecipePageParts/RecipePageIngredientEditor.vue b/frontend/components/Domain/Recipe/RecipePage/RecipePageParts/RecipePageIngredientEditor.vue index 489eafc30fbc..03b785ca3eab 100644 --- a/frontend/components/Domain/Recipe/RecipePage/RecipePageParts/RecipePageIngredientEditor.vue +++ b/frontend/components/Domain/Recipe/RecipePage/RecipePageParts/RecipePageIngredientEditor.vue @@ -7,7 +7,7 @@ handle=".handle" v-bind="{ animation: 200, - group: 'description', + group: 'recipe-ingredients', disabled: false, ghostClass: 'ghost', }" diff --git a/frontend/components/Domain/Recipe/RecipePage/RecipePageParts/RecipePageInstructions.vue b/frontend/components/Domain/Recipe/RecipePage/RecipePageParts/RecipePageInstructions.vue index 1ab9f88609a4..592a2cf0019a 100644 --- a/frontend/components/Domain/Recipe/RecipePage/RecipePageParts/RecipePageInstructions.vue +++ b/frontend/components/Domain/Recipe/RecipePage/RecipePageParts/RecipePageInstructions.vue @@ -79,7 +79,7 @@ handle=".handle" v-bind="{ animation: 200, - group: 'description', + group: 'recipe-instructions', ghostClass: 'ghost', }" @input="updateIndex"