fix emoji reactions notifs being non-expandable

This commit is contained in:
Henry Jameson 2025-08-19 16:21:30 +03:00
commit 0d6453baec

View file

@ -138,7 +138,7 @@ const Notification = {
return highlightStyle(highlight[user.screen_name])
},
expandable () {
return (new Set(['like', '-pleroma:emoji_reaction', 'repeat'])).has(this.notification.type)
return (new Set(['like', 'pleroma:emoji_reaction', 'repeat'])).has(this.notification.type)
},
user () {
return this.$store.getters.findUser(this.notification.from_profile.id)