aboutsummaryrefslogtreecommitdiff
path: root/src/components/status_body/status_body.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/status_body/status_body.vue')
-rw-r--r--src/components/status_body/status_body.vue13
1 files changed, 7 insertions, 6 deletions
diff --git a/src/components/status_body/status_body.vue b/src/components/status_body/status_body.vue
index bd599a8c..68f6701f 100644
--- a/src/components/status_body/status_body.vue
+++ b/src/components/status_body/status_body.vue
@@ -48,20 +48,21 @@
:html="status.raw_html"
:emoji="status.emojis"
:handle-links="true"
+ :hide-mentions="hideMentions"
:greentext="mergedConfig.greentext"
- :hide-first-mentions="hideFirstMentions"
- :hide-last-mentions="hideLastMentions"
+ @parseReady="setHeadTailLinks"
+ ref="text"
>
<template v-slot:prefix>
<MentionsLine
- v-if="!hideFirstMentions && mentionsFirst"
- :mentions="mentionsFirst"
+ v-if="!hideMentions && firstMentions && firstMentions.length > 0"
+ :mentions="firstMentions"
/>
</template>
<template v-slot:suffix>
<MentionsLine
- v-if="!hideFirstMentions && mentionsLast"
- :mentions="mentionsLast"
+ v-if="!hideMentions && lastMentions.length > 0 && firstMentions.length === 0"
+ :mentions="lastMentions"
/>
</template>
</RichContent>