diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-04-18 07:35:56 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-04-18 07:35:56 +0900 |
| commit | fa8a08f016bd72895dc15602ee021b20054d5c57 (patch) | |
| tree | 98bfedf418816a2f1f3790a8784ad60e7260c22d /src/client/app/mobile | |
| parent | :art: (diff) | |
| download | misskey-fa8a08f016bd72895dc15602ee021b20054d5c57.tar.gz misskey-fa8a08f016bd72895dc15602ee021b20054d5c57.tar.bz2 misskey-fa8a08f016bd72895dc15602ee021b20054d5c57.zip | |
タイムラインでリプライ先の投稿を表示するか否か設定できるように
Diffstat (limited to 'src/client/app/mobile')
| -rw-r--r-- | src/client/app/mobile/views/components/note.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/app/mobile/views/components/note.vue b/src/client/app/mobile/views/components/note.vue index 088275311b..5d3a6c7362 100644 --- a/src/client/app/mobile/views/components/note.vue +++ b/src/client/app/mobile/views/components/note.vue @@ -1,6 +1,6 @@ <template> <div class="note" :class="{ renote: isRenote }"> - <div class="reply-to" v-if="p.reply"> + <div class="reply-to" v-if="p.reply && (!os.isSignedIn || os.i.clientSettings.showReplyTarget)"> <x-sub :note="p.reply"/> </div> <div class="renote" v-if="isRenote"> |