fixes
This commit is contained in:
parent
1f2db7ad5e
commit
359d866a99
1 changed files with 2 additions and 2 deletions
|
|
@ -139,9 +139,9 @@ onMounted(async () => {
|
|||
const s = useStateStore()
|
||||
useHead({ title: `YTPTube: ( ${Object.keys(s.queue).length || 0} | ${Object.keys(s.history).length || 0} )` })
|
||||
watch([s.queue, s.history], () => {
|
||||
const title = `YTPTube: ( ${Object.keys(s.queue.length) || 0} | ${Object.keys(s.history.length) || 0} )`
|
||||
const title = `YTPTube: ( ${Object.keys(s.queue).length || 0} | ${Object.keys(s.history).length || 0} )`
|
||||
useHead({ title })
|
||||
})
|
||||
}, { deep: true })
|
||||
}
|
||||
applyPreferredColorScheme(selectedTheme.value)
|
||||
} catch (e) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue