From 531fb2fc4b64cf97c5d0a5265b32b250447ec784 Mon Sep 17 00:00:00 2001 From: Lightling Date: Fri, 3 May 2024 00:57:33 -0400 Subject: [PATCH] fix mysteriously broken props id in project-view --- projects/frontend/src/views/project/project-view.vue | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/projects/frontend/src/views/project/project-view.vue b/projects/frontend/src/views/project/project-view.vue index 0386e45..58b8a41 100644 --- a/projects/frontend/src/views/project/project-view.vue +++ b/projects/frontend/src/views/project/project-view.vue @@ -10,10 +10,6 @@ import { useRouteStore } from 'src/routes' import EmbedableContent from 'src/components/shared/embedable-content.vue' import { getFormattedPeriod } from 'src/utilities/dom' -const props = defineProps<{ - id: string, -}>() - const emits = defineEmits<{ (e: 'loaded'): void }>() @@ -28,8 +24,8 @@ const routeSubConfig = routeStore._routes[currentRoute.path] onMounted(async () => { const config = await fetchAndParseYaml(routeConfig.config) - info.value = await fetchAndParseYaml(config.projects[props.id].config) - const md = await fetchAndParseMarkdown(config.projects[props.id].content) + 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.replace('$PERIOD', getFormattedPeriod(info.value.period!)) document.title = routeSubConfig.title.replace('$PROJECT', info.value.title)