less confusing reply indicator

This commit is contained in:
Henry Jameson 2026-07-23 13:45:10 +03:00
commit 98b30733ad

View file

@ -44,23 +44,24 @@
</span> </span>
</template> </template>
<template #user> <template #user>
<!-- v-if is there because status might not be loaded yet -->
<StatusBody
v-if="customReplyTo && customReplyTo.text.trim().length > 0"
class="reply-body faint"
:status="customReplyTo"
collapse
single-line
ignore-subject
/>
<MentionLink <MentionLink
v-else-if="customReplyTo"
class="reply-body" class="reply-body"
:content="replyToName" :content="replyToName"
:url="replyProfileLink" :url="replyProfileLink"
:user-id="message.in_reply_to_user_id" :user-id="message.in_reply_to_user_id"
:user-screen-name="message.in_reply_to_screen_name" :user-screen-name="message.in_reply_to_screen_name"
/> />
<!-- v-if is there because status might not be loaded yet -->
<template v-if="customReplyTo && customReplyTo.text.trim().length > 0">
:
<StatusBody
class="reply-body faint"
:status="customReplyTo"
collapse
single-line
ignore-subject
/>
</template>
</template> </template>
</i18n-t> </i18n-t>
<div <div