From 19842822e1b5d0ed80c9e6b870b11903dec7a518 Mon Sep 17 00:00:00 2001 From: AkiraFukushima Date: Sun, 14 Aug 2022 22:05:01 +0900 Subject: [PATCH] [fix] Display emoji reaction notifications in notifications timeline --- src/renderer/components/organisms/Notification.vue | 11 +++++++++++ .../organisms/Notification/StatusReaction.vue | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/src/renderer/components/organisms/Notification.vue b/src/renderer/components/organisms/Notification.vue index 06bc955e..22ed4dfe 100644 --- a/src/renderer/components/organisms/Notification.vue +++ b/src/renderer/components/organisms/Notification.vue @@ -95,6 +95,17 @@ @select="$emit('selectNotification')" > + + diff --git a/src/renderer/components/organisms/Notification/StatusReaction.vue b/src/renderer/components/organisms/Notification/StatusReaction.vue index 5680b0df..32d4f6dd 100644 --- a/src/renderer/components/organisms/Notification/StatusReaction.vue +++ b/src/renderer/components/organisms/Notification/StatusReaction.vue @@ -183,7 +183,7 @@ export default defineComponent({ return 'notification.poll_vote.body' case 'quote': return 'notification.quote.body' - case 'reaction': + case 'emoji-reaction': return 'notification.reaction.body' case 'reblog': return 'notification.reblog.body'