From 0775814e19e6f6ddde564f7a29ae80fab2175d3f Mon Sep 17 00:00:00 2001 From: Thomas Citharel Date: Fri, 27 Jan 2023 15:48:48 +0100 Subject: [PATCH] Add page title for Categories view Signed-off-by: Thomas Citharel --- js/src/views/CategoriesView.vue | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/js/src/views/CategoriesView.vue b/js/src/views/CategoriesView.vue index 8568a75c0..26daefce0 100644 --- a/js/src/views/CategoriesView.vue +++ b/js/src/views/CategoriesView.vue @@ -103,6 +103,7 @@ import { import { useI18n } from "vue-i18n"; import { useEventCategories } from "@/composition/apollo/config"; import EmptyContent from "@/components/Utils/EmptyContent.vue"; +import { useHead } from "@vueuse/head"; const { t } = useI18n({ useScope: "global" }); @@ -150,4 +151,8 @@ const imageLicense = (categoryLicence: CategoryPictureLicencing): string => { }; const isLicencePanelOpen = ref(false); + +useHead({ + title: computed(() => t("Category list")), +});