mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-14 22:17:30 -07:00
Fix bug
This commit is contained in:
parent
6c191afda9
commit
9357fe6f93
1 changed files with 1 additions and 1 deletions
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue