aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorxenofem <xenofem@xeno.science>2020-02-08 13:15:09 -0500
committerxenofem <xenofem@xeno.science>2020-02-08 13:15:09 -0500
commit36e19128bf958559437144b26a3e71f30c9b3377 (patch)
treebce224990b79240c16f3259fc87c011c4b6ebcae /src
parent8fcb9c42aad9e623287c26244f079fc5028c6359 (diff)
Indicate whether collapsed statuses contain gallery media or link preview cards
Diffstat (limited to 'src')
-rw-r--r--src/components/status/status.vue12
1 files changed, 11 insertions, 1 deletions
diff --git a/src/components/status/status.vue b/src/components/status/status.vue
index d5739304..b9e3fa1d 100644
--- a/src/components/status/status.vue
+++ b/src/components/status/status.vue
@@ -277,7 +277,17 @@
href="#"
class="cw-status-hider"
@click.prevent="toggleShowMore"
- >{{ $t("general.show_more") }}</a>
+ >
+ {{ $t("general.show_more") }}
+ <span
+ v-if="galleryAttachments.length > 0"
+ class="icon-picture"
+ />
+ <span
+ v-if="status.card"
+ class="icon-link"
+ />
+ </a>
<a
v-if="showingMore"
href="#"