aboutsummaryrefslogtreecommitdiff
path: root/src/components/notifications/notifications.vue
diff options
context:
space:
mode:
authortusooa <tusooa@kazv.moe>2023-08-18 21:07:48 -0400
committertusooa <tusooa@kazv.moe>2023-08-18 22:25:32 -0400
commit50bad0fc68dee158e1681e599c7852550f5bef31 (patch)
treef8240463a6c6d84e1bac60983a6ded27649c214d /src/components/notifications/notifications.vue
parentbd60238f010df2554e88639f21003487ec503704 (diff)
Display unread visuals when there are unread extra notifications
Diffstat (limited to 'src/components/notifications/notifications.vue')
-rw-r--r--src/components/notifications/notifications.vue4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/notifications/notifications.vue b/src/components/notifications/notifications.vue
index d40c930a..999f8e9c 100644
--- a/src/components/notifications/notifications.vue
+++ b/src/components/notifications/notifications.vue
@@ -17,9 +17,9 @@
<div class="title">
{{ $t('notifications.notifications') }}
<span
- v-if="unseenCount"
+ v-if="unseenCountBadgeText"
class="badge badge-notification unseen-count"
- >{{ unseenCount }}</span>
+ >{{ unseenCountBadgeText }}</span>
</div>
<div
v-if="showScrollTop"