From 50105a8f92fd148d370ccb9f915c8f5d2c90f14c Mon Sep 17 00:00:00 2001 From: Henry Jameson Date: Tue, 23 Dec 2025 15:31:54 +0200 Subject: [PATCH] fix poll notifications not being 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 3edf21de7..8052e3a73 100644 --- a/src/components/notification/notification.js +++ b/src/components/notification/notification.js @@ -163,7 +163,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', 'poll'])).has(this.notification.type) }, user () { return this.$store.getters.findUser(this.notification.from_profile.id)