From 1a814aa9d1f354c419563430cbe1624a9ce395f6 Mon Sep 17 00:00:00 2001 From: krial057 Date: Mon, 1 Nov 2021 10:40:03 +0100 Subject: [PATCH] Also show working/waiting time if only one of both is set --- vue/src/components/RecipeCard.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/vue/src/components/RecipeCard.vue b/vue/src/components/RecipeCard.vue index fc27d5504..0098175d2 100644 --- a/vue/src/components/RecipeCard.vue +++ b/vue/src/components/RecipeCard.vue @@ -12,11 +12,11 @@
- + v-if="recipe.working_time !== 0 && recipe.waiting_time !== 0"> + {{ recipe.working_time }} {{ $t('min') }} - + {{ recipe.waiting_time }} {{ $t('min') }}