This commit is contained in:
syuilo 2017-11-02 00:04:39 +09:00
parent ec4f3595b9
commit 667ddfea9a
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@
<div class="body"> <div class="body">
<p if={ postsFetching }>読み込み中<mk-ellipsis/></p> <p if={ postsFetching }>読み込み中<mk-ellipsis/></p>
<div if={ !postsFetching }> <div if={ !postsFetching }>
<p if={ posts == null }>まだ投稿がありません</p> <p if={ posts == null || posts.length == 0 }>まだ投稿がありません</p>
<virtual if={ posts != null }> <virtual if={ posts != null }>
<mk-channel-post each={ post in posts.slice().reverse() } post={ post } form={ parent.refs.form }/> <mk-channel-post each={ post in posts.slice().reverse() } post={ post } form={ parent.refs.form }/>
</virtual> </virtual>