aboutsummaryrefslogtreecommitdiff
path: root/src/components/status_body/status_body.vue
diff options
context:
space:
mode:
authorIlja <ilja@ilja.space>2022-03-20 09:53:57 +0100
committerIlja <ilja@ilja.space>2022-03-20 09:53:57 +0100
commitd0bfd9a80826a7cdb37e1a84cf70ab8a44c3579e (patch)
tree4a0fbf2367e7bb8f4d2e71cb2499f15416bf97ef /src/components/status_body/status_body.vue
parentf9393b0dab22279e9bdb97a1cf52fecfe278a4a7 (diff)
parent6f1d953642473412c094e5b723eb479e2b19a542 (diff)
Merge branch 'develop' of https://git.pleroma.social/pleroma/pleroma-fe into feat/report-notification
Diffstat (limited to 'src/components/status_body/status_body.vue')
-rw-r--r--src/components/status_body/status_body.vue4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/status_body/status_body.vue b/src/components/status_body/status_body.vue
index a088e6bc..24d842c2 100644
--- a/src/components/status_body/status_body.vue
+++ b/src/components/status_body/status_body.vue
@@ -17,14 +17,14 @@
<button
v-if="longSubject && showingLongSubject"
class="button-unstyled -link tall-subject-hider"
- @click.prevent="showingLongSubject=false"
+ @click.prevent="toggleShowingLongSubject"
>
{{ $t("status.hide_full_subject") }}
</button>
<button
v-else-if="longSubject"
class="button-unstyled -link tall-subject-hider"
- @click.prevent="showingLongSubject=true"
+ @click.prevent="toggleShowingLongSubject"
>
{{ $t("status.show_full_subject") }}
</button>