diff options
| author | Henry Jameson <me@hjkos.com> | 2022-04-20 20:23:34 +0300 |
|---|---|---|
| committer | Henry Jameson <me@hjkos.com> | 2022-04-20 20:23:34 +0300 |
| commit | e388dbc168ae466e6745588df0498ee0036d6eb1 (patch) | |
| tree | d33e8bea242b8f8a345e28b304236081806440f2 /src/components/status_body/status_body.vue | |
| parent | be8098e8ec41ffa909987ee5db990a8c349a9034 (diff) | |
| parent | 895eda3714e9977d931a5e4a0f215c304df021af (diff) | |
Merge branch 'fix-chat-errors' into threecolumn
* fix-chat-errors:
fix some chat errors/warnings that sometimes happen
Fix incorrect close of a status popover when clicking Expand inside it
fix tests
fix hashtags by explicitly putting attributes
Diffstat (limited to 'src/components/status_body/status_body.vue')
| -rw-r--r-- | src/components/status_body/status_body.vue | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/components/status_body/status_body.vue b/src/components/status_body/status_body.vue index 24d842c2..976fe98c 100644 --- a/src/components/status_body/status_body.vue +++ b/src/components/status_body/status_body.vue @@ -15,14 +15,14 @@ :emoji="status.emojis" /> <button - v-if="longSubject && showingLongSubject" + v-show="longSubject && showingLongSubject" class="button-unstyled -link tall-subject-hider" @click.prevent="toggleShowingLongSubject" > {{ $t("status.hide_full_subject") }} </button> <button - v-else-if="longSubject" + v-show="longSubject && !showingLongSubject" class="button-unstyled -link tall-subject-hider" @click.prevent="toggleShowingLongSubject" > @@ -34,7 +34,7 @@ class="text-wrapper" > <button - v-if="hideTallStatus" + v-show="hideTallStatus" class="button-unstyled -link tall-status-hider" :class="{ '-focused': focused }" @click.prevent="toggleShowMore" @@ -54,7 +54,7 @@ /> <button - v-if="hideSubjectStatus" + v-show="hideSubjectStatus" class="button-unstyled -link cw-status-hider" @click.prevent="toggleShowMore" > @@ -85,7 +85,7 @@ /> </button> <button - v-if="showingMore && !fullContent" + v-show="showingMore && !fullContent" class="button-unstyled -link status-unhider" @click.prevent="toggleShowMore" > |
