This commit is contained in:
syuilo 2017-11-01 03:42:50 +09:00
parent 20707d6fd9
commit 0cffc1cac0
1 changed files with 1 additions and 1 deletions

View File

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