aboutsummaryrefslogtreecommitdiff
path: root/src/components/status_body/status_body.vue
diff options
context:
space:
mode:
authorHenry Jameson <me@hjkos.com>2021-06-10 18:52:01 +0300
committerHenry Jameson <me@hjkos.com>2021-06-10 18:52:01 +0300
commitcc00af7a3102034b05ebcd4aa1fd01c6f467184a (patch)
treefc2d34177416a03359a85567aa6b8c29374c2f07 /src/components/status_body/status_body.vue
parent0f73e96194fb13e70be0222a7ab718d7894b62c2 (diff)
Hellthread(tm) Certified
Diffstat (limited to 'src/components/status_body/status_body.vue')
-rw-r--r--src/components/status_body/status_body.vue12
1 files changed, 10 insertions, 2 deletions
diff --git a/src/components/status_body/status_body.vue b/src/components/status_body/status_body.vue
index 4df29934..bd599a8c 100644
--- a/src/components/status_body/status_body.vue
+++ b/src/components/status_body/status_body.vue
@@ -49,11 +49,19 @@
:emoji="status.emojis"
:handle-links="true"
:greentext="mergedConfig.greentext"
+ :hide-first-mentions="hideFirstMentions"
+ :hide-last-mentions="hideLastMentions"
>
<template v-slot:prefix>
<MentionsLine
- v-if="!hideFirstMentions"
- :mentions="mentions"
+ v-if="!hideFirstMentions && mentionsFirst"
+ :mentions="mentionsFirst"
+ />
+ </template>
+ <template v-slot:suffix>
+ <MentionsLine
+ v-if="!hideFirstMentions && mentionsLast"
+ :mentions="mentionsLast"
/>
</template>
</RichContent>