1
0
Fork 0
mirror of https://github.com/mealie-recipes/mealie.git synced 2025-07-24 15:49:42 +02:00

Fix titles of category, tag, tool pages (#905)

This commit is contained in:
Philipp Fischbeck 2022-01-07 22:08:05 +01:00 committed by GitHub
parent 1482f51fcd
commit 76d2eecd86
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 21 additions and 29 deletions

View file

@ -45,7 +45,7 @@
</RecipeCardSection>
</v-container>
</template>
<script lang="ts">
import { defineComponent, useAsync, useRoute, reactive, toRefs, useRouter } from "@nuxtjs/composition-api";
import RecipeCardSection from "~/components/Domain/Recipe/RecipeCardSection.vue";
@ -103,7 +103,7 @@ export default defineComponent({
},
head() {
return {
title: this.$t("sidebar.categories") as string,
title: this.$t("tool.tools") as string,
};
},
methods: {
@ -116,4 +116,3 @@ export default defineComponent({
},
});
</script>