diff --git a/frontend/components/Domain/Recipe/RecipeDialogBulkAdd.vue b/frontend/components/Domain/Recipe/RecipeDialogBulkAdd.vue index 0c1abc0b413a..4a38a039d300 100644 --- a/frontend/components/Domain/Recipe/RecipeDialogBulkAdd.vue +++ b/frontend/components/Domain/Recipe/RecipeDialogBulkAdd.vue @@ -2,9 +2,9 @@
diff --git a/frontend/components/Domain/Recipe/RecipeIngredientEditor.vue b/frontend/components/Domain/Recipe/RecipeIngredientEditor.vue new file mode 100644 index 000000000000..f6f85a609ef1 --- /dev/null +++ b/frontend/components/Domain/Recipe/RecipeIngredientEditor.vue @@ -0,0 +1,122 @@ + + + + diff --git a/frontend/components/Domain/Recipe/RecipeIngredients.vue b/frontend/components/Domain/Recipe/RecipeIngredients.vue index 5e819a73ed3b..6e2a4da79651 100644 --- a/frontend/components/Domain/Recipe/RecipeIngredients.vue +++ b/frontend/components/Domain/Recipe/RecipeIngredients.vue @@ -89,7 +89,7 @@ export default { edit: { type: Boolean, - default: true, + default: false, }, }, data() { diff --git a/frontend/components/Domain/Recipe/RecipeInstructions.vue b/frontend/components/Domain/Recipe/RecipeInstructions.vue index 317c6c75191b..5d24881fdc94 100644 --- a/frontend/components/Domain/Recipe/RecipeInstructions.vue +++ b/frontend/components/Domain/Recipe/RecipeInstructions.vue @@ -32,7 +32,7 @@ class="ma-1" :class="[{ 'on-hover': hover }, isChecked(index)]" :elevation="hover ? 12 : 2" - :ripple="!edit" + :ripple="false" @click="toggleDisabled(index)" > diff --git a/frontend/components/Layout/AppHeader.vue b/frontend/components/Layout/AppHeader.vue index 937dae49eeb5..17dbb65b044e 100644 --- a/frontend/components/Layout/AppHeader.vue +++ b/frontend/components/Layout/AppHeader.vue @@ -96,30 +96,6 @@ export default defineComponent({ restricted: false, nav: "/user/login", }, - { - icon: this.$globals.icons.calendarWeek, - title: this.$t("meal-plan.dinner-this-week"), - nav: "/meal-plan/this-week", - restricted: true, - }, - { - icon: this.$globals.icons.calendarToday, - title: this.$t("meal-plan.dinner-today"), - nav: "/meal-plan/today", - restricted: true, - }, - { - icon: this.$globals.icons.calendarMultiselect, - title: this.$t("meal-plan.planner"), - nav: "/meal-plan/planner", - restricted: true, - }, - { - icon: this.$globals.icons.formatListCheck, - title: this.$t("shopping-list.shopping-lists"), - nav: "/shopping-list", - restricted: true, - }, { icon: this.$globals.icons.logout, title: this.$t("user.logout"), diff --git a/frontend/components/Layout/AppSidebar.vue b/frontend/components/Layout/AppSidebar.vue index 5f0f66336dc7..888a70472b3f 100644 --- a/frontend/components/Layout/AppSidebar.vue +++ b/frontend/components/Layout/AppSidebar.vue @@ -1,5 +1,5 @@