File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
vue3/src/components/display Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 128
128
</v-card >
129
129
</template >
130
130
131
- <v-card class =" mt-1" v-if =" recipe.steps.length > 1 && recipe.showIngredientOverview" >
131
+ <v-card class =" mt-1" v-if =" ( recipe.steps.length > 1 || (recipe.steps.length == 1 && !recipe.steps[0].showIngredientsTable)) && recipe.showIngredientOverview" >
132
132
<steps-overview :steps =" recipe.steps" :ingredient-factor =" ingredientFactor" ></steps-overview >
133
133
</v-card >
134
134
Original file line number Diff line number Diff line change 23
23
<timer :seconds =" step.time != undefined ? step.time*60 : 0" @stop =" timerRunning = false" v-if =" timerRunning" ></timer >
24
24
<v-card-text v-if =" step.ingredients.length > 0 || step.instruction != ''" >
25
25
<v-row >
26
- <v-col cols =" 12" md =" 6" v-if =" step.ingredients.length > 0" >
26
+ <v-col cols =" 12" md =" 6" v-if =" step.ingredients.length > 0 && step.showIngredientsTable " >
27
27
<ingredients-table v-model =" step.ingredients" :ingredient-factor =" ingredientFactor" ></ingredients-table >
28
28
</v-col >
29
29
<v-col cols =" 12" md =" 6" class =" markdown-body" >
You can’t perform that action at this time.
0 commit comments