This commit is contained in:
syuilo 2017-11-01 03:42:50 +09:00
parent 20707d6fd9
commit 0cffc1cac0

View file

@ -3,7 +3,7 @@
<h1>{ channel.title }</h1> <h1>{ channel.title }</h1>
<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 }>まだ投稿がありません</p>
<virtual if={ posts != null }> <virtual if={ posts != null }>
<mk-channel-post each={ posts.slice().reverse() } post={ this } form={ parent.refs.form }/> <mk-channel-post each={ posts.slice().reverse() } post={ this } form={ parent.refs.form }/>
</virtual> </virtual>