diff --git a/src/App.vue b/src/App.vue index 5c826f8..ea020f7 100644 --- a/src/App.vue +++ b/src/App.vue @@ -43,7 +43,7 @@ watch(visibilityState, () => { // Fix Masonry layout on updates, config changes or window resize events const fixLayoutNow = inject('redrawVueMasonry') as () => void -const fixLayout = createFilterWrapper(debounceFilter(500, { maxWait: 500 }), ()=>{ +const fixLayout = createFilterWrapper(debounceFilter(500, { maxWait: 500 }), () => { console.debug("Updating masonry layout") fixLayoutNow() }) @@ -61,7 +61,7 @@ const actualTheme = computed(() => { }) watch(actualTheme, () => { document.body!.parentElement!.dataset.bsTheme = actualTheme.value -}, {immediate: true}) +}, { immediate: true }) // Update page title watch(() => config.value?.title, () => document.title = config.value?.title || fallbackConfig.title) @@ -191,11 +191,13 @@ const privacyLink = computed(() => {