commit: bd60238f010df2554e88639f21003487ec503704
parent 1c180ace0b12ff85cb6cfe34bfc022b0f82b1c85
Author: tusooa <tusooa@kazv.moe>
Date: Fri, 18 Aug 2023 20:41:49 -0400
Do not show extra notifications in interactions page
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/components/notifications/notifications.js b/src/components/notifications/notifications.js
@@ -97,7 +97,7 @@ const Notifications = {
},
noSticky () { return this.$store.getters.mergedConfig.disableStickyHeaders },
showExtraNotifications () {
- return true
+ return !this.noHeading
},
...mapGetters(['unreadChatCount', 'unreadAnnouncementCount'])
},