diff --git a/libs/types/src/config/routing.d.ts b/libs/types/src/config/routing.d.ts
index 30f3af6..52bfd2b 100644
--- a/libs/types/src/config/routing.d.ts
+++ b/libs/types/src/config/routing.d.ts
@@ -11,6 +11,7 @@ export type SharedRouteDefinition = {
stylesheetUrls: string[]
template: TemplateType
title: string
+ fullTitle: string
warning: boolean | WarningModal
}
diff --git a/projects/frontend/src/main.vue b/projects/frontend/src/main.vue
index 5bb9a1d..aa2052f 100644
--- a/projects/frontend/src/main.vue
+++ b/projects/frontend/src/main.vue
@@ -1,5 +1,5 @@
diff --git a/projects/frontend/src/views/project/project-list.vue b/projects/frontend/src/views/project/project-list.vue
index 4df80ab..b6e4de8 100644
--- a/projects/frontend/src/views/project/project-list.vue
+++ b/projects/frontend/src/views/project/project-list.vue
@@ -57,7 +57,7 @@ onMounted(async () => {
const id = projectIds.value[i]
projects.value[id] = await fetchAndParseYaml(config.value.projects[id].config)
}
- document.title = routeConfig.title
+ document.title = routeConfig.fullTitle
ready.value = true
})
diff --git a/projects/frontend/src/views/project/project-view.vue b/projects/frontend/src/views/project/project-view.vue
index adcd2a2..d1237c8 100644
--- a/projects/frontend/src/views/project/project-view.vue
+++ b/projects/frontend/src/views/project/project-view.vue
@@ -32,7 +32,7 @@ onMounted(async () => {
info.value = await fetchAndParseYaml(config.projects[currentRoute.query.id as string].config)
const md = await fetchAndParseMarkdown(config.projects[currentRoute.query.id as string].content)
content.value = md
- document.title = routeSubConfig.title.replace('$PROJECT', info.value.title)
+ document.title = routeSubConfig.fullTitle?.replace('$PROJECT', info.value.title)
window.routeSubConfig = {...routeSubConfig}
window.routeContentConfig = {...info.value}