[Glitch] Do not display empty message when the list is known to have more elements

This commit is contained in:
Thibaut Girka 2018-12-12 18:04:10 +01:00 committed by ThibG
parent 39696024ca
commit 73ee38f485
1 changed files with 2 additions and 2 deletions

View File

@ -164,7 +164,7 @@ export default class ScrollableList extends PureComponent {
const { fullscreen } = this.state;
const childrenCount = React.Children.count(children);
const loadMore = (hasMore && childrenCount > 0 && onLoadMore) ? <LoadMore visible={!isLoading} onClick={this.handleLoadMore} /> : null;
const loadMore = (hasMore && onLoadMore) ? <LoadMore visible={!isLoading} onClick={this.handleLoadMore} /> : null;
let scrollableArea = null;
if (showLoading) {
@ -179,7 +179,7 @@ export default class ScrollableList extends PureComponent {
</div>
</div>
);
} else if (isLoading || childrenCount > 0 || !emptyMessage) {
} else if (isLoading || childrenCount > 0 || hasMore || !emptyMessage) {
scrollableArea = (
<div className={classNames('scrollable', { fullscreen })} ref={this.setRef}>
<div role='feed' className='item-list'>