From 082650d458491d8c16d01018d6d14375274f083d Mon Sep 17 00:00:00 2001 From: TAKAHASHI Shuuji Date: Sat, 24 Feb 2024 23:18:13 +0900 Subject: [PATCH] fix: fix `[object Object]` on the mentions tab (#2611) --- pages/notifications/[filter].vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/notifications/[filter].vue b/pages/notifications/[filter].vue index 1ed9037e..52cc7daa 100644 --- a/pages/notifications/[filter].vue +++ b/pages/notifications/[filter].vue @@ -15,7 +15,7 @@ const filter = computed(() => { }) useHydratedHead({ - title: () => `${t(`tab.notifications_${filter ?? 'all'}`)} | ${t('nav.notifications')}`, + title: () => `${t(`tab.notifications_${filter.value ?? 'all'}`)} | ${t('nav.notifications')}`, })