diff options
| author | Tusooa Zhu <tusooa@kazv.moe> | 2021-11-22 11:20:22 -0500 |
|---|---|---|
| committer | Tusooa Zhu <tusooa@kazv.moe> | 2022-03-07 19:19:32 -0500 |
| commit | 5768806d1ba65bf49e4313f4a7ace602ae456a89 (patch) | |
| tree | 0df5c51a5ff3555dc24f32dd66a64c7be11925f2 | |
| parent | f8c5cbcd0d5d092c1264032a1be003f828dfc499 (diff) | |
Fix showingLongSubject not correctly propagated
| -rw-r--r-- | src/components/status_body/status_body.vue | 4 |
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> |
