logo

pleroma-fe

My custom branche(s) on git.pleroma.social/pleroma/pleroma-fe git clone https://hacktivis.me/git/pleroma-fe.git
commit: 0fd1b26fb6203f7755f51268b40793a7ad61fdad
parent 4e8bb80dbd0ff5993f5613c6cbdfe757af0d0807
Author: Henry Jameson <me@hjkos.com>
Date:   Wed, 13 Dec 2023 20:38:39 +0200

don't include extra notifications

Diffstat:

Msrc/components/mobile_nav/mobile_nav.js2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 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 },