fix mysteriously broken props id in project-view
This commit is contained in:
parent
ded87049f5
commit
531fb2fc4b
1 changed files with 2 additions and 6 deletions
|
@ -10,10 +10,6 @@ import { useRouteStore } from 'src/routes'
|
||||||
import EmbedableContent from 'src/components/shared/embedable-content.vue'
|
import EmbedableContent from 'src/components/shared/embedable-content.vue'
|
||||||
import { getFormattedPeriod } from 'src/utilities/dom'
|
import { getFormattedPeriod } from 'src/utilities/dom'
|
||||||
|
|
||||||
const props = defineProps<{
|
|
||||||
id: string,
|
|
||||||
}>()
|
|
||||||
|
|
||||||
const emits = defineEmits<{
|
const emits = defineEmits<{
|
||||||
(e: 'loaded'): void
|
(e: 'loaded'): void
|
||||||
}>()
|
}>()
|
||||||
|
@ -28,8 +24,8 @@ const routeSubConfig = routeStore._routes[currentRoute.path]
|
||||||
|
|
||||||
onMounted(async () => {
|
onMounted(async () => {
|
||||||
const config = await fetchAndParseYaml<ProjectList>(routeConfig.config)
|
const config = await fetchAndParseYaml<ProjectList>(routeConfig.config)
|
||||||
info.value = await fetchAndParseYaml<ProjectListingInfo>(config.projects[props.id].config)
|
info.value = await fetchAndParseYaml<ProjectListingInfo>(config.projects[currentRoute.query.id as string].config)
|
||||||
const md = await fetchAndParseMarkdown(config.projects[props.id].content)
|
const md = await fetchAndParseMarkdown(config.projects[currentRoute.query.id as string].content)
|
||||||
content.value = md.replace('$PERIOD', getFormattedPeriod(info.value.period!))
|
content.value = md.replace('$PERIOD', getFormattedPeriod(info.value.period!))
|
||||||
document.title = routeSubConfig.title.replace('$PROJECT', info.value.title)
|
document.title = routeSubConfig.title.replace('$PROJECT', info.value.title)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue