diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2020-05-10 16:22:39 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2020-05-10 16:22:39 +0900 |
| commit | 64bbfed43222e8469a39eba5249c196c16f96eb7 (patch) | |
| tree | d4b8eacac5106a73f05937b07aa265d748c4549a /src/client/components/note.vue | |
| parent | refactor(client): Clean up component (diff) | |
| download | sharkey-64bbfed43222e8469a39eba5249c196c16f96eb7.tar.gz sharkey-64bbfed43222e8469a39eba5249c196c16f96eb7.tar.bz2 sharkey-64bbfed43222e8469a39eba5249c196c16f96eb7.zip | |
feat(client): Implement threaded replies
Resolve #2113
Resolve #5819
Diffstat (limited to 'src/client/components/note.vue')
| -rw-r--r-- | src/client/components/note.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/components/note.vue b/src/client/components/note.vue index 619d1a5b01..ec31a5f99a 100644 --- a/src/client/components/note.vue +++ b/src/client/components/note.vue @@ -79,7 +79,7 @@ <div class="deleted" v-if="appearNote.deletedAt != null">{{ $t('deleted') }}</div> </div> </article> - <x-sub v-for="note in replies" :key="note.id" :note="note" class="reply"/> + <x-sub v-for="note in replies" :key="note.id" :note="note" class="reply" :detail="true"/> </div> </template> |