diff --git a/src/renderer/components/molecules/Toot.vue b/src/renderer/components/molecules/Toot.vue index 0520e0cc..a99217ac 100644 --- a/src/renderer/components/molecules/Toot.vue +++ b/src/renderer/components/molecules/Toot.vue @@ -36,14 +36,14 @@
- + {{ $t('cards.toot.show_more') }} {{ $t('cards.toot.hide')}}
-
+
@@ -234,6 +234,9 @@ export default { }, spoilered: function () { return this.originalMessage.spoiler_text.length > 0 + }, + isShowContent: function () { + return !this.spoilered || this.showContent } }, mounted () { @@ -436,9 +439,6 @@ export default { }) }) }, - isShowContent () { - return !this.spoilered || this.showContent - }, sensitive () { return this.originalMessage.sensitive && this.mediaAttachments.length > 0 },