Skip to content
Snippets Groups Projects
Commit c3174e97 authored by syuilo's avatar syuilo
Browse files

Fix bug

parent 6ab0e81e
No related branches found
No related tags found
No related merge requests found
......@@ -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>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment