From 0d6453baecbb1385b19fc159bce04c1b861cce5a Mon Sep 17 00:00:00 2001 From: Henry Jameson Date: Tue, 19 Aug 2025 16:21:30 +0300 Subject: [PATCH] fix emoji reactions notifs being non-expandable --- src/components/notification/notification.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/notification/notification.js b/src/components/notification/notification.js index 247b73848..8692c6190 100644 --- a/src/components/notification/notification.js +++ b/src/components/notification/notification.js @@ -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)