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}