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.vue20
1 files changed, 11 insertions, 9 deletions
diff --git a/src/components/status_body/status_body.vue b/src/components/status_body/status_body.vue
index fae2d594..ff919211 100644
--- a/src/components/status_body/status_body.vue
+++ b/src/components/status_body/status_body.vue
@@ -10,7 +10,6 @@
class="media-body summary"
:html="status.summary_raw_html"
:emoji="status.emojis"
- @click.prevent="linkClicked"
/>
<button
v-if="longSubject && showingLongSubject"
@@ -43,19 +42,22 @@
class="text-wrapper"
v-if="!hideSubjectStatus && !(singleLine && status.summary_html)"
>
- <MentionsLine
- v-if="!mentionsOwnLine"
- :attentions="status.attentions"
- class="mentions-line"
- />
<RichContent
:class="{ '-single-line': singleLine }"
class="text media-body"
- :html="postBodyHtml"
+ :html="status.raw_html"
:emoji="status.emojis"
:handle-links="true"
- @click.prevent="linkClicked"
- />
+ :greentext="mergedConfig.greentext"
+ >
+ <template v-slot:prefix>
+ <MentionsLine
+ v-if="!mentionsOwnLine"
+ :mentions="mentions"
+ class="mentions-line"
+ />
+ </template>
+ </RichContent>
</span>
<button