mirror of
https://github.com/h3poteto/whalebird-desktop
synced 2025-01-23 06:05:09 +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')"
|
@select="$emit('selectNotification')"
|
||||||
>
|
>
|
||||||
</StatusReaction>
|
</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>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
@ -183,7 +183,7 @@ export default defineComponent({
|
|||||||
return 'notification.poll_vote.body'
|
return 'notification.poll_vote.body'
|
||||||
case 'quote':
|
case 'quote':
|
||||||
return 'notification.quote.body'
|
return 'notification.quote.body'
|
||||||
case 'reaction':
|
case 'emoji-reaction':
|
||||||
return 'notification.reaction.body'
|
return 'notification.reaction.body'
|
||||||
case 'reblog':
|
case 'reblog':
|
||||||
return 'notification.reblog.body'
|
return 'notification.reblog.body'
|
||||||
|
Loading…
Reference in New Issue
Block a user