diff options
| author | dakkar <dakkar@thenautilus.net> | 2023-12-19 09:07:38 +0000 |
|---|---|---|
| committer | dakkar <dakkar@thenautilus.net> | 2023-12-23 14:09:52 +0000 |
| commit | d06939bd25db133995f1eced8b5420abfd3cbcf0 (patch) | |
| tree | 82e5c43767d377ab8ccf4772349f96fbb1e2e0fd /packages/frontend/src/components/MkNoteSub.vue | |
| parent | real-time updates on note detail view (diff) | |
| download | sharkey-d06939bd25db133995f1eced8b5420abfd3cbcf0.tar.gz sharkey-d06939bd25db133995f1eced8b5420abfd3cbcf0.tar.bz2 sharkey-d06939bd25db133995f1eced8b5420abfd3cbcf0.zip | |
real-time update: hide deleted replies
Diffstat (limited to 'packages/frontend/src/components/MkNoteSub.vue')
| -rw-r--r-- | packages/frontend/src/components/MkNoteSub.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/frontend/src/components/MkNoteSub.vue b/packages/frontend/src/components/MkNoteSub.vue index 3c840cf598..fd8904f3c2 100644 --- a/packages/frontend/src/components/MkNoteSub.vue +++ b/packages/frontend/src/components/MkNoteSub.vue @@ -4,7 +4,7 @@ SPDX-License-Identifier: AGPL-3.0-only --> <template> -<div v-if="!muted" ref="el" :class="[$style.root, { [$style.children]: depth > 1 }]"> +<div v-show="!isDeleted" v-if="!muted" ref="el" :class="[$style.root, { [$style.children]: depth > 1 }]"> <div :class="$style.main"> <div v-if="note.channel" :class="$style.colorBar" :style="{ background: note.channel.color }"></div> <MkAvatar :class="$style.avatar" :user="note.user" link preview/> |