モバイルのデッキで返信が表示されない問題を修正

This commit is contained in:
syuilo
2019-03-02 08:06:03 +09:00
parent 139523b763
commit 1d02d9e0fe
3 changed files with 34 additions and 9 deletions

View File

@ -7,9 +7,7 @@
v-hotkey="keymap"
:title="title"
>
<div class="conversation" v-if="detail && conversation.length > 0">
<x-sub v-for="note in conversation" :key="note.id" :note="note"/>
</div>
<x-sub v-for="note in conversation" :key="note.id" :note="note"/>
<div class="reply-to" v-if="appearNote.reply && (!$store.getters.isSignedIn || $store.state.settings.showReplyTarget)">
<x-sub :note="appearNote.reply"/>
</div>
@ -69,9 +67,7 @@
<div class="deleted" v-if="appearNote.deletedAt != null">{{ $t('deleted') }}</div>
</div>
</article>
<div class="replies" v-if="detail && replies.length > 0">
<x-sub v-for="note in replies" :key="note.id" :note="note"/>
</div>
<x-sub v-for="note in replies" :key="note.id" :note="note"/>
</div>
</template>