Fix flickering caused by turbolinks and other minor fixes

This commit is contained in:
riggraz
2019-09-11 21:03:40 +02:00
parent 8d9ab0f717
commit 5ca113b545
3 changed files with 8 additions and 4 deletions

View File

@@ -50,7 +50,10 @@ const PostList = ({
/>
))
:
!areLoading ? <span className="infoText text-muted">There are no posts.</span> : null
areLoading ?
<span className="infoText">Loading...</span>
:
<span className="infoText text-muted">There are no posts.</span>
}
</InfiniteScroll>
</div>