implemented some missing settings

This commit is contained in:
vabene1111
2025-06-06 15:42:39 +02:00
parent 23c4c2e543
commit ec0bc43c21
39 changed files with 115 additions and 24 deletions

View File

@@ -117,7 +117,7 @@
<external-recipe-viewer :recipe="recipe"></external-recipe-viewer>
</template>
<template v-else>
<v-card class="mt-1" v-if="recipe.steps.length > 1">
<v-card class="mt-1" v-if="recipe.steps.length > 1 && recipe.showIngredientOverview">
<steps-overview :steps="recipe.steps" :ingredient-factor="ingredientFactor"></steps-overview>
</v-card>
@@ -170,7 +170,7 @@
</v-card-text>
</v-card>
<recipe-activity :recipe="recipe"></recipe-activity>
<recipe-activity :recipe="recipe" v-if="useUserPreferenceStore().userSettings.comments"></recipe-activity>
</template>
</template>
@@ -189,6 +189,7 @@ import {useMediaQuery, useWakeLock} from "@vueuse/core";
import StepView from "@/components/display/StepView.vue";
import {DateTime} from "luxon";
import PropertyView from "@/components/display/PropertyView.vue";
import {useUserPreferenceStore} from "@/stores/UserPreferenceStore.ts";
const {request, release} = useWakeLock()
const isPrintMode = useMediaQuery('print')