consistency fixes

This commit is contained in:
lightling 2024-05-13 18:08:30 -04:00
parent 15e4d822a1
commit 71adcff32b
3 changed files with 7 additions and 2 deletions

View file

@ -4,7 +4,6 @@ import { inflateVideoEmbeds } from './video'
/**
* Inflates various supported embeds
* @param _window the reference to the window
*/
export const inflateEmbeds = () => {
inflateDetailsElements()

View file

@ -203,7 +203,7 @@ onMounted(async () => {
)
GalleryTile(
v-if='!entry.hidden || !config.removeFromView'
:class='{ hidden: projects[id].hidden && !config.removeFromView }'
:class='{ hidden: entry.hidden && !config.removeFromView }'
:entry='entry'
:id='id'
:hideWarnings='hideWarnings'

View file

@ -4,6 +4,7 @@ import type {
GalleryEntry,
GalleryList,
GalleryListDefinition,
RoutedWindow,
} from '@goldenwere/static-web-templates-types'
import { amendVariantsWithDefaults, getTitleFromEntryOrId } from './gallery-utilities'
@ -13,6 +14,8 @@ import { useRouteStore } from 'src/routes'
import EmbedableContent from 'src/components/shared/embedable-content.vue'
declare const window: RoutedWindow
const props = defineProps<{
variants: string[]
}>()
@ -48,6 +51,9 @@ onMounted(async () => {
id.value = props.variants[props.variants.length - 1]
title.value = getTitleFromEntryOrId(entry.value, id.value)
document.title = routeSubConfig.title.replace('$ENTRY', title.value)
window.routeSubConfig = {...routeSubConfig}
window.routeContentConfig = {...entry.value}
ready.value = true
emits('loaded')
})