mirror of
https://github.com/TandoorRecipes/recipes.git
synced 2026-01-05 06:08:46 -05:00
minor tweaks
This commit is contained in:
@@ -59,7 +59,7 @@
|
|||||||
</v-card>
|
</v-card>
|
||||||
|
|
||||||
<v-card class="mt-1" v-if="props.recipe.steps.length > 1">
|
<v-card class="mt-1" v-if="props.recipe.steps.length > 1">
|
||||||
<steps-overview :steps="props.recipe.steps"></steps-overview>
|
<steps-overview :steps="props.recipe.steps" :ingredient-factor="ingredientFactor"></steps-overview>
|
||||||
</v-card>
|
</v-card>
|
||||||
|
|
||||||
<v-card class="mt-1" v-for="(step, index) in props.recipe.steps" :key="step.id">
|
<v-card class="mt-1" v-for="(step, index) in props.recipe.steps" :key="step.id">
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
<v-row v-for="(s, i) in props.steps">
|
<v-row v-for="(s, i) in props.steps">
|
||||||
<v-col class="pa-1">
|
<v-col class="pa-1">
|
||||||
<b v-if="s.showAsHeader">{{ i + 1 }}. {{ s.name }} </b>
|
<b v-if="s.showAsHeader">{{ i + 1 }}. {{ s.name }} </b>
|
||||||
<IngredientsTable :ingredients="s.ingredients"></IngredientsTable>
|
<ingredients-table :ingredients="s.ingredients" :ingredient-factor="props.ingredientFactor"></ingredients-table>
|
||||||
</v-col>
|
</v-col>
|
||||||
</v-row>
|
</v-row>
|
||||||
</v-container>
|
</v-container>
|
||||||
@@ -28,6 +28,10 @@ const props = defineProps({
|
|||||||
type: Array as PropType<Array<Step>>,
|
type: Array as PropType<Array<Step>>,
|
||||||
default: [],
|
default: [],
|
||||||
},
|
},
|
||||||
|
ingredientFactor: {
|
||||||
|
type: Number,
|
||||||
|
required: true,
|
||||||
|
},
|
||||||
})
|
})
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
@@ -12,7 +12,7 @@
|
|||||||
</v-card-text>
|
</v-card-text>
|
||||||
</v-card>
|
</v-card>
|
||||||
|
|
||||||
<horizontal-recipe-scroller :skeletons="4" mode="recent"></horizontal-recipe-scroller>
|
<!-- <horizontal-recipe-scroller :skeletons="4" mode="recent"></horizontal-recipe-scroller>-->
|
||||||
<horizontal-recipe-scroller :skeletons="4" mode="new"></horizontal-recipe-scroller>
|
<horizontal-recipe-scroller :skeletons="4" mode="new"></horizontal-recipe-scroller>
|
||||||
<horizontal-recipe-scroller :skeletons="2" mode="rating"></horizontal-recipe-scroller>
|
<horizontal-recipe-scroller :skeletons="2" mode="rating"></horizontal-recipe-scroller>
|
||||||
<horizontal-recipe-scroller :skeletons="4" mode="keyword"></horizontal-recipe-scroller>
|
<horizontal-recipe-scroller :skeletons="4" mode="keyword"></horizontal-recipe-scroller>
|
||||||
|
|||||||
Reference in New Issue
Block a user