From e781cd3466d2e9e080b91575d8c35bc6c26014dd Mon Sep 17 00:00:00 2001 From: Michael Genson <71845777+michael-genson@users.noreply.github.com> Date: Fri, 18 Jul 2025 21:46:16 +0000 Subject: [PATCH] lint --- frontend/components/Domain/Recipe/RecipeContextMenu.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/components/Domain/Recipe/RecipeContextMenu.vue b/frontend/components/Domain/Recipe/RecipeContextMenu.vue index acf44b7a2..95d45ffc3 100644 --- a/frontend/components/Domain/Recipe/RecipeContextMenu.vue +++ b/frontend/components/Domain/Recipe/RecipeContextMenu.vue @@ -277,8 +277,8 @@ export default defineNuxtComponent({ const newMealdateString = computed(() => { // Format the date to YYYY-MM-DD in the same timezone as newMealdate const year = state.newMealdate.getFullYear(); - const month = String(state.newMealdate.getMonth() + 1).padStart(2, '0'); - const day = String(state.newMealdate.getDate()).padStart(2, '0'); + const month = String(state.newMealdate.getMonth() + 1).padStart(2, "0"); + const day = String(state.newMealdate.getDate()).padStart(2, "0"); return `${year}-${month}-${day}`; });