logo

pleroma-fe

My custom branche(s) on git.pleroma.social/pleroma/pleroma-fe git clone https://hacktivis.me/git/pleroma-fe.git
commit: 5768806d1ba65bf49e4313f4a7ace602ae456a89
parent f8c5cbcd0d5d092c1264032a1be003f828dfc499
Author: Tusooa Zhu <tusooa@kazv.moe>
Date:   Mon, 22 Nov 2021 11:20:22 -0500

Fix showingLongSubject not correctly propagated

Diffstat:

Msrc/components/status_body/status_body.vue4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 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>