diff options
| author | dave <starpumadev@gmail.com> | 2019-02-04 03:16:55 -0500 |
|---|---|---|
| committer | dave <starpumadev@gmail.com> | 2019-02-04 03:16:55 -0500 |
| commit | 887f1def2e1b8c052ddf2425f192502211c3013e (patch) | |
| tree | 152e0b55b75757857a78eff5d8d3f021f20b354d | |
| parent | 06cf8628e54a30c5dd9dff153408f9641b8dad00 (diff) | |
handle poster attachment with tall subjects
| -rw-r--r-- | src/components/status/status.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/status/status.vue b/src/components/status/status.vue index adbaff73..fdeda42a 100644 --- a/src/components/status/status.vue +++ b/src/components/status/status.vue @@ -98,7 +98,7 @@ <a v-if="showingMore" href="#" class="status-unhider" @click.prevent="toggleShowMore">Show less</a> </div> - <div v-if="status.attachments && !hideSubjectStatus" class="attachments media-body"> + <div v-if="status.attachments && (!hideSubjectStatus || showingTallSubject)" class="attachments media-body"> <attachment class="non-gallery" v-for="attachment in nonGalleryAttachments" |
