diff options
| author | Henry Jameson <me@hjkos.com> | 2023-12-13 20:38:39 +0200 |
|---|---|---|
| committer | Henry Jameson <me@hjkos.com> | 2023-12-13 20:38:39 +0200 |
| commit | 0fd1b26fb6203f7755f51268b40793a7ad61fdad (patch) | |
| tree | 3c418cf374f5bcc8f643971ab37cb19fb196fd84 | |
| parent | 4e8bb80dbd0ff5993f5613c6cbdfe757af0d0807 (diff) | |
don't include extra notifications
| -rw-r--r-- | src/components/mobile_nav/mobile_nav.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/mobile_nav/mobile_nav.js b/src/components/mobile_nav/mobile_nav.js index ec9aeed0..8c9261b0 100644 --- a/src/components/mobile_nav/mobile_nav.js +++ b/src/components/mobile_nav/mobile_nav.js @@ -61,7 +61,7 @@ const MobileNav = { return this.unseenNotifications.length }, unseenCountBadgeText () { - return `${this.unseenCount ? this.unseenCount : ''}${this.extraNotificationsCount ? '*' : ''}` + return `${this.unseenCount ? this.unseenCount : ''}` }, hideSitename () { return this.$store.state.instance.hideSitename }, sitename () { return this.$store.state.instance.name }, |
