diff --git a/src/components/chat_message/chat_message.vue b/src/components/chat_message/chat_message.vue index 394cce4b7..88ab2fc0a 100644 --- a/src/components/chat_message/chat_message.vue +++ b/src/components/chat_message/chat_message.vue @@ -1,9 +1,9 @@ @@ -40,7 +40,10 @@ - + {{ $t('status.broken_reply') }} @@ -83,7 +86,10 @@ :user="author" /> - + @@ -98,7 +104,6 @@ @mouseenter="hovered = true" @mouseleave="hovered = false" > - - + @@ -232,7 +240,10 @@ v-else class="chat-message-date-separator" > - + diff --git a/src/components/chat_message_list/chat_message_list.vue b/src/components/chat_message_list/chat_message_list.vue index 5cdbf6871..7833730e7 100644 --- a/src/components/chat_message_list/chat_message_list.vue +++ b/src/components/chat_message_list/chat_message_list.vue @@ -7,7 +7,7 @@ :previous-item="getPreviousItem(index)" :hovered-message-chain="chatItem.messageChainId === hoveredMessageChainId" :focused="chatItem.id === focusedId" - :repliedTo="chatItem.id === repliedId" + :replied-to="chatItem.id === repliedId" @hover="onMessageHover" @delete="onMessageDelete" @reply-requested="onReplyRequested" diff --git a/src/components/chat_view/chat_view.vue b/src/components/chat_view/chat_view.vue index e6bef0f84..06862ab3c 100644 --- a/src/components/chat_view/chat_view.vue +++ b/src/components/chat_view/chat_view.vue @@ -24,7 +24,7 @@ v-if="messages[0]?.summary_raw_html" :html="messages[0].summary_raw_html" :emoji="messages[0].emojis" - /> + /> {{ $t('timeline.conversation') }} diff --git a/src/components/conversation/conversation.vue b/src/components/conversation/conversation.vue index 170ab41d6..0833c4f89 100644 --- a/src/components/conversation/conversation.vue +++ b/src/components/conversation/conversation.vue @@ -14,9 +14,9 @@ v-if="conversation[0]?.summary_raw_html" :html="conversation[0].summary_raw_html" :emoji="conversation[0].emojis" - /> + /> - {{ $t('timeline.conversation') }} + {{ $t('timeline.conversation') }} newStatus.quote.url = url" @update:id="id => newStatus.quote.id = id" diff --git a/src/components/status_action_buttons/status_action_buttons.vue b/src/components/status_action_buttons/status_action_buttons.vue index 34e5e25ea..c829a1f50 100644 --- a/src/components/status_action_buttons/status_action_buttons.vue +++ b/src/components/status_action_buttons/status_action_buttons.vue @@ -20,9 +20,9 @@ :get-component="getComponent" :close="() => { /* no-op */ }" :do-action="doAction" - @emoji-picker-shown="onEmojiPickerShown" :default-button-style="useDefaultButtons" :hide-label="hideLabels" + @emoji-picker-shown="onEmojiPickerShown" /> { }) expect( - wrapper.html().replaceAll('\n', '').replaceAll(//g, ''), + wrapper + .html() + .replaceAll('\n', '') + .replaceAll(//g, ''), ).to.eql(compwrap(expected)) }) @@ -433,7 +436,10 @@ describe('RichContent', () => { }) expect( - wrapper.html().replaceAll('\n', '').replaceAll(//g, ''), + wrapper + .html() + .replaceAll('\n', '') + .replaceAll(//g, ''), ).to.eql(compwrap(expected)) })