mirror of
https://github.com/whippyshou/mastodon
synced 2025-01-23 02:04:36 +09:00
Fix auto-loading-more when not scrolled (#27286)
This commit is contained in:
parent
88fc73dbbc
commit
b9b8eafc98
@ -73,7 +73,7 @@ class ScrollableList extends PureComponent {
|
||||
const clientHeight = this.getClientHeight();
|
||||
const offset = scrollHeight - scrollTop - clientHeight;
|
||||
|
||||
if (400 > offset && this.props.onLoadMore && this.props.hasMore && !this.props.isLoading) {
|
||||
if (scrollTop > 0 && offset < 400 && this.props.onLoadMore && this.props.hasMore && !this.props.isLoading) {
|
||||
this.props.onLoadMore();
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user