From bd60238f010df2554e88639f21003487ec503704 Mon Sep 17 00:00:00 2001 From: tusooa Date: Fri, 18 Aug 2023 20:41:49 -0400 Subject: [PATCH] Do not show extra notifications in interactions page --- src/components/notifications/notifications.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/notifications/notifications.js b/src/components/notifications/notifications.js index 0ed1571d..09ebc943 100644 --- 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']) },