diff options
| author | MeiMei <30769358+mei23@users.noreply.github.com> | 2018-10-12 05:10:40 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2018-10-12 05:10:40 +0900 |
| commit | 1a689f66419d2ea2f4eb34fa3fe868ea250fdbb9 (patch) | |
| tree | da6984e057781da3805e02aad5c0de37556995dc /src/client/app/desktop/views/components/notes.note.vue | |
| parent | trim filename (diff) | |
| download | misskey-1a689f66419d2ea2f4eb34fa3fe868ea250fdbb9.tar.gz misskey-1a689f66419d2ea2f4eb34fa3fe868ea250fdbb9.tar.bz2 misskey-1a689f66419d2ea2f4eb34fa3fe868ea250fdbb9.zip | |
削除された投稿はタイムライン上で表示しないようにする (#2887)
* Excepts deleted notes on query
* Hide deleted notes
* Use v-show
Diffstat (limited to 'src/client/app/desktop/views/components/notes.note.vue')
| -rw-r--r-- | src/client/app/desktop/views/components/notes.note.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/app/desktop/views/components/notes.note.vue b/src/client/app/desktop/views/components/notes.note.vue index 2db1479823..3d8a6815ba 100644 --- a/src/client/app/desktop/views/components/notes.note.vue +++ b/src/client/app/desktop/views/components/notes.note.vue @@ -1,5 +1,5 @@ <template> -<div class="note" tabindex="-1" v-hotkey="keymap" :title="title"> +<div class="note" v-show="p.deletedAt == null" tabindex="-1" v-hotkey="keymap" :title="title"> <div class="reply-to" v-if="p.reply && (!$store.getters.isSignedIn || $store.state.settings.showReplyTarget)"> <x-sub :note="p.reply"/> </div> |