consistency fixes
This commit is contained in:
parent
15e4d822a1
commit
71adcff32b
3 changed files with 7 additions and 2 deletions
|
@ -4,7 +4,6 @@ import { inflateVideoEmbeds } from './video'
|
|||
|
||||
/**
|
||||
* Inflates various supported embeds
|
||||
* @param _window the reference to the window
|
||||
*/
|
||||
export const inflateEmbeds = () => {
|
||||
inflateDetailsElements()
|
||||
|
|
|
@ -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'
|
||||
|
|
|
@ -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')
|
||||
})
|
||||
|
|
Loading…
Add table
Reference in a new issue