From b021fb73c2e159febac366adba8db45740c305d3 Mon Sep 17 00:00:00 2001 From: p0lycarpio Date: Fri, 27 Jun 2025 16:07:10 +0000 Subject: [PATCH] fix v-select items name --- .../Household/GroupMealPlanRuleForm.vue | 26 +++++++++---------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/frontend/components/Domain/Household/GroupMealPlanRuleForm.vue b/frontend/components/Domain/Household/GroupMealPlanRuleForm.vue index 7e10a7941..bcdd9a3e2 100644 --- a/frontend/components/Domain/Household/GroupMealPlanRuleForm.vue +++ b/frontend/components/Domain/Household/GroupMealPlanRuleForm.vue @@ -69,22 +69,22 @@ export default defineNuxtComponent({ const i18n = useI18n(); const MEAL_TYPE_OPTIONS = [ - { text: i18n.t("meal-plan.breakfast"), value: "breakfast" }, - { text: i18n.t("meal-plan.lunch"), value: "lunch" }, - { text: i18n.t("meal-plan.dinner"), value: "dinner" }, - { text: i18n.t("meal-plan.side"), value: "side" }, - { text: i18n.t("meal-plan.type-any"), value: "unset" }, + { title: i18n.t("meal-plan.breakfast"), value: "breakfast" }, + { title: i18n.t("meal-plan.lunch"), value: "lunch" }, + { title: i18n.t("meal-plan.dinner"), value: "dinner" }, + { title: i18n.t("meal-plan.side"), value: "side" }, + { title: i18n.t("meal-plan.type-any"), value: "unset" }, ]; const MEAL_DAY_OPTIONS = [ - { text: i18n.t("general.monday"), value: "monday" }, - { text: i18n.t("general.tuesday"), value: "tuesday" }, - { text: i18n.t("general.wednesday"), value: "wednesday" }, - { text: i18n.t("general.thursday"), value: "thursday" }, - { text: i18n.t("general.friday"), value: "friday" }, - { text: i18n.t("general.saturday"), value: "saturday" }, - { text: i18n.t("general.sunday"), value: "sunday" }, - { text: i18n.t("meal-plan.day-any"), value: "unset" }, + { title: i18n.t("general.monday"), value: "monday" }, + { title: i18n.t("general.tuesday"), value: "tuesday" }, + { title: i18n.t("general.wednesday"), value: "wednesday" }, + { title: i18n.t("general.thursday"), value: "thursday" }, + { title: i18n.t("general.friday"), value: "friday" }, + { title: i18n.t("general.saturday"), value: "saturday" }, + { title: i18n.t("general.sunday"), value: "sunday" }, + { title: i18n.t("meal-plan.day-any"), value: "unset" }, ]; const inputDay = computed({