mirror of
https://github.com/h3poteto/whalebird-desktop
synced 2025-01-07 14:42:32 +01:00
[fix] Display emoji reaction notifications in notifications timeline
This commit is contained in:
parent
3286ea7ee4
commit
19842822e1
@ -95,6 +95,17 @@
|
||||
@select="$emit('selectNotification')"
|
||||
>
|
||||
</StatusReaction>
|
||||
<StatusReaction
|
||||
v-else-if="message.type === 'emoji_reaction'"
|
||||
:message="message"
|
||||
:filters="filters"
|
||||
:focused="focused"
|
||||
:overlaid="overlaid"
|
||||
reactionType="emoji-reaction"
|
||||
@focusRight="$emit('focusRight')"
|
||||
@select="$emit('selectNotification')"
|
||||
>
|
||||
</StatusReaction>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
|
@ -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'
|
||||
|
Loading…
Reference in New Issue
Block a user