diff options
| author | tusooa <tusooa@kazv.moe> | 2023-08-18 20:41:49 -0400 |
|---|---|---|
| committer | tusooa <tusooa@kazv.moe> | 2023-08-18 22:25:32 -0400 |
| commit | bd60238f010df2554e88639f21003487ec503704 (patch) | |
| tree | b06ffc47da2e29f703a95cfd09de64ad69b1ad5d | |
| parent | 1c180ace0b12ff85cb6cfe34bfc022b0f82b1c85 (diff) | |
Do not show extra notifications in interactions page
| -rw-r--r-- | src/components/notifications/notifications.js | 2 |
1 files changed, 1 insertions, 1 deletions
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']) }, |
