From 23a35c426561a0d8a7bde43a587b6ebc78b11573 Mon Sep 17 00:00:00 2001 From: Lightling Date: Wed, 14 Aug 2024 02:32:14 -0400 Subject: [PATCH] use id as title fallback on gallery view --- projects/frontend/src/views/gallery/gallery-view.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/projects/frontend/src/views/gallery/gallery-view.vue b/projects/frontend/src/views/gallery/gallery-view.vue index 0566a51..49c5989 100644 --- a/projects/frontend/src/views/gallery/gallery-view.vue +++ b/projects/frontend/src/views/gallery/gallery-view.vue @@ -73,8 +73,8 @@ const onButtonClicked = (event: Event | null, direction: number, override?: numb onMounted(async () => { let config = await fetchAndParseYaml>(routeConfig.config) resolved.value = await fetchConfigByIdFromList(config, currentRoute.query.id as string) - document.title = routeSubConfig.fullTitle?.replace('$ENTRY', resolved.value.title) - routeStore.setBreadcrumbs(currentRoute, resolved.value.title) + document.title = routeSubConfig.fullTitle?.replace('$ENTRY', resolved.value.title || currentRoute.query.id as string) + routeStore.setBreadcrumbs(currentRoute, resolved.value.title || currentRoute.query.id as string) window.routeConfig = {...routeConfig} window.routeSubConfig = {...routeSubConfig} window.routeContentConfig = {...resolved.value}