diff options
| author | Tusooa Zhu <tusooa@kazv.moe> | 2021-09-08 23:22:11 -0400 |
|---|---|---|
| committer | Tusooa Zhu <tusooa@kazv.moe> | 2022-03-07 19:19:31 -0500 |
| commit | cebb4224ac0143f6969c7d3e907a7d25eb38b4c7 (patch) | |
| tree | 98d387fc1d35bb361f9c318917000d72313d8768 /src | |
| parent | 9b27ac9aaf58236d39845823f63f45b8b48f821d (diff) | |
Do not display replies inside status as link if there are no other replies
Diffstat (limited to 'src')
| -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 bc0aeaf0..31908815 100644 --- a/src/components/status/status.vue +++ b/src/components/status/status.vue @@ -347,7 +347,7 @@ class="replies" > <button - v-if="showOtherRepliesAsButton" + v-if="showOtherRepliesAsButton && replies.length > 1" class="button-unstyled -link faint" :title="$tc('status.ancestor_follow', replies.length - 1, { numReplies: replies.length - 1 })" @click.prevent="dive" |
