mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-08 01:49:58 +00:00
fix: fix [object Object]
on the mentions tab (#2611)
This commit is contained in:
parent
36004a7eba
commit
082650d458
1 changed files with 1 additions and 1 deletions
|
@ -15,7 +15,7 @@ const filter = computed<mastodon.v1.NotificationType | undefined>(() => {
|
||||||
})
|
})
|
||||||
|
|
||||||
useHydratedHead({
|
useHydratedHead({
|
||||||
title: () => `${t(`tab.notifications_${filter ?? 'all'}`)} | ${t('nav.notifications')}`,
|
title: () => `${t(`tab.notifications_${filter.value ?? 'all'}`)} | ${t('nav.notifications')}`,
|
||||||
})
|
})
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue