From dce7eb575bf3380b52289ca293d6ba5899ed88e2 Mon Sep 17 00:00:00 2001 From: mgabdev <> Date: Fri, 22 May 2020 00:05:40 -0400 Subject: [PATCH] Updated scrollable list offset to 1500 for inifinite load MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit • Updated: - scrollable list offset to 1500 for inifinite load from 600 offset --- app/javascript/gabsocial/components/scrollable_list.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/javascript/gabsocial/components/scrollable_list.js b/app/javascript/gabsocial/components/scrollable_list.js index 1d635282..397ef8db 100644 --- a/app/javascript/gabsocial/components/scrollable_list.js +++ b/app/javascript/gabsocial/components/scrollable_list.js @@ -133,7 +133,7 @@ export default class ScrollableList extends PureComponent { // reload } - if (600 > offset && this.props.onLoadMore && this.props.hasMore && !this.props.isLoading) { + if (1500 > offset && this.props.onLoadMore && this.props.hasMore && !this.props.isLoading) { this.props.onLoadMore(); }