diff options
| author | tusooa <tusooa@kazv.moe> | 2023-08-18 20:02:58 -0400 |
|---|---|---|
| committer | tusooa <tusooa@kazv.moe> | 2023-08-18 22:25:32 -0400 |
| commit | c4549f0993dd2e176f6619694cfaa632d166f002 (patch) | |
| tree | b27b52a6a3bcd17ca85384dce15ed4f7efa63f6a /src/components/extra_notifications/extra_notifications.js | |
| parent | 0d6a9e8a647be860b10506aecaafb4ff0f10150f (diff) | |
Display follow requests in extra notifications
Diffstat (limited to 'src/components/extra_notifications/extra_notifications.js')
| -rw-r--r-- | src/components/extra_notifications/extra_notifications.js | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/src/components/extra_notifications/extra_notifications.js b/src/components/extra_notifications/extra_notifications.js index 0bf904ba..1f3c6e6d 100644 --- a/src/components/extra_notifications/extra_notifications.js +++ b/src/components/extra_notifications/extra_notifications.js @@ -2,7 +2,16 @@ import { mapGetters } from 'vuex' const ExtraNotifications = { computed: { - ...mapGetters(['unreadChatCount', 'unreadAnnouncementCount']) + shouldShowChats () { + return this.unreadChatCount + }, + shouldShowAnnouncements () { + return this.unreadAnnouncementCount + }, + shouldShowFollowRequests () { + return this.followRequestCount + }, + ...mapGetters(['unreadChatCount', 'unreadAnnouncementCount', 'followRequestCount']) } } |
