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
|
* Inflates various supported embeds
|
||||||
* @param _window the reference to the window
|
|
||||||
*/
|
*/
|
||||||
export const inflateEmbeds = () => {
|
export const inflateEmbeds = () => {
|
||||||
inflateDetailsElements()
|
inflateDetailsElements()
|
||||||
|
|
|
@ -203,7 +203,7 @@ onMounted(async () => {
|
||||||
)
|
)
|
||||||
GalleryTile(
|
GalleryTile(
|
||||||
v-if='!entry.hidden || !config.removeFromView'
|
v-if='!entry.hidden || !config.removeFromView'
|
||||||
:class='{ hidden: projects[id].hidden && !config.removeFromView }'
|
:class='{ hidden: entry.hidden && !config.removeFromView }'
|
||||||
:entry='entry'
|
:entry='entry'
|
||||||
:id='id'
|
:id='id'
|
||||||
:hideWarnings='hideWarnings'
|
:hideWarnings='hideWarnings'
|
||||||
|
|
|
@ -4,6 +4,7 @@ import type {
|
||||||
GalleryEntry,
|
GalleryEntry,
|
||||||
GalleryList,
|
GalleryList,
|
||||||
GalleryListDefinition,
|
GalleryListDefinition,
|
||||||
|
RoutedWindow,
|
||||||
} from '@goldenwere/static-web-templates-types'
|
} from '@goldenwere/static-web-templates-types'
|
||||||
|
|
||||||
import { amendVariantsWithDefaults, getTitleFromEntryOrId } from './gallery-utilities'
|
import { amendVariantsWithDefaults, getTitleFromEntryOrId } from './gallery-utilities'
|
||||||
|
@ -13,6 +14,8 @@ import { useRouteStore } from 'src/routes'
|
||||||
|
|
||||||
import EmbedableContent from 'src/components/shared/embedable-content.vue'
|
import EmbedableContent from 'src/components/shared/embedable-content.vue'
|
||||||
|
|
||||||
|
declare const window: RoutedWindow
|
||||||
|
|
||||||
const props = defineProps<{
|
const props = defineProps<{
|
||||||
variants: string[]
|
variants: string[]
|
||||||
}>()
|
}>()
|
||||||
|
@ -48,6 +51,9 @@ onMounted(async () => {
|
||||||
id.value = props.variants[props.variants.length - 1]
|
id.value = props.variants[props.variants.length - 1]
|
||||||
title.value = getTitleFromEntryOrId(entry.value, id.value)
|
title.value = getTitleFromEntryOrId(entry.value, id.value)
|
||||||
document.title = routeSubConfig.title.replace('$ENTRY', title.value)
|
document.title = routeSubConfig.title.replace('$ENTRY', title.value)
|
||||||
|
window.routeSubConfig = {...routeSubConfig}
|
||||||
|
window.routeContentConfig = {...entry.value}
|
||||||
|
|
||||||
ready.value = true
|
ready.value = true
|
||||||
emits('loaded')
|
emits('loaded')
|
||||||
})
|
})
|
||||||
|
|
Loading…
Add table
Reference in a new issue