This commit is contained in:
syuilo 2017-11-01 13:17:47 +09:00
parent 6ab0e81e1c
commit c3174e9768

View file

@ -7,7 +7,7 @@
<div if={ !postsFetching }>
<p if={ posts == null }>まだ投稿がありません</p>
<virtual if={ posts != null }>
<mk-channel-post each={ posts.slice().reverse() } post={ this } form={ parent.refs.form }/>
<mk-channel-post each={ post in posts.slice().reverse() } post={ post } form={ parent.refs.form }/>
</virtual>
</div>
<hr>