diff options
| author | Tusooa Zhu <tusooa@kazv.moe> | 2021-09-05 16:35:47 -0400 |
|---|---|---|
| committer | Tusooa Zhu <tusooa@kazv.moe> | 2022-03-07 19:19:31 -0500 |
| commit | 863255d52fdcbbabe45c86c7e36ebafc0f7e1c53 (patch) | |
| tree | 242a0d6d03d80632c34e7b8f66c4482afdfafca8 /src/components/status/status.vue | |
| parent | c4bd004cbcde96aa438d81c77d00099b1b8937b4 (diff) | |
Make position of other replies button a pref
Diffstat (limited to 'src/components/status/status.vue')
| -rw-r--r-- | src/components/status/status.vue | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/src/components/status/status.vue b/src/components/status/status.vue index e4812711..bc0aeaf0 100644 --- a/src/components/status/status.vue +++ b/src/components/status/status.vue @@ -346,7 +346,20 @@ v-if="inConversation && !isPreview && replies && replies.length" class="replies" > - <span class="faint">{{ $t('status.replies_list') }}</span> + <button + v-if="showOtherRepliesAsButton" + class="button-unstyled -link faint" + :title="$tc('status.ancestor_follow', replies.length - 1, { numReplies: replies.length - 1 })" + @click.prevent="dive" + > + {{ $t('status.replies_list') }} + </button> + <span + v-else + class="faint" + > + {{ $t('status.replies_list') }} + </span> <StatusPopover v-for="reply in replies" :key="reply.id" |
