1
0
mirror of https://github.com/TandoorRecipes/recipes.git synced 2026-01-11 17:16:59 -05:00

some small tweaks

This commit is contained in:
vabene1111
2025-08-20 17:00:11 +02:00
parent 4438bfcb89
commit 8d736c0f88
22 changed files with 2420 additions and 82 deletions

View File

@@ -35,6 +35,10 @@
<database-model-col model="MealType"></database-model-col>
</v-row>
<template v-for="p in TANDOOR_PLUGINS" :key="p.name">
<component :is="p.databasePageComponent" v-if="p.databasePageComponent"></component>
</template>
<v-row>
<v-col>
<h2>{{ $t('Miscellaneous') }}</h2>
@@ -47,8 +51,8 @@
<database-model-col model="CustomFilter"></database-model-col>
<database-model-col model="CookLog"></database-model-col>
<database-model-col model="ViewLog"></database-model-col>
<database-link-col :to="{name: 'IngredientEditorPage'}"
<database-link-col :to="{name: 'IngredientEditorPage'}"
prepend-icon="fa-solid fa-table-list"
:title="$t('Ingredient Editor')"
:subtitle="$t('IngredientEditorHelp')">
@@ -77,6 +81,7 @@
import DatabaseModelCol from "@/components/display/DatabaseModelCol.vue";
import DatabaseLinkCol from "@/components/display/DatabaseLinkCol.vue";
import {TANDOOR_PLUGINS} from "@/types/Plugins.ts";
</script>