diff --git a/components/status/StatusReplyingTo.vue b/components/status/StatusReplyingTo.vue index 7c0bf147..93730ac7 100644 --- a/components/status/StatusReplyingTo.vue +++ b/components/status/StatusReplyingTo.vue @@ -27,14 +27,15 @@ const account = isSelf ? computed(() => status.account) : useAccountById(status. </template> <template v-else> <div i-ri-chat-1-line text-blue /> - <i18n-t keypath="status.replying_to"> - <template v-if="account"> - <AccountInlineInfo :account="account" :link="false" /> - </template> - <template v-else> - {{ $t('status.someone') }} - </template> - </i18n-t> + <div ws-nowrap> + <i18n-t keypath="status.replying_to" /> + </div> + <template v-if="account"> + <AccountInlineInfo :account="account" :link="false" /> + </template> + <template v-else> + {{ $t('status.someone') }} + </template> </template> </NuxtLink> </template>