From 0edaaa95d73038bfa068aa769272a3b8a591dcbb Mon Sep 17 00:00:00 2001 From: mgabdev <> Date: Mon, 15 Feb 2021 20:48:19 -0500 Subject: [PATCH] Fixed issue with Following/Followers scrolling to top on infinite scroll pagination MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit • Fixed: - issue with Following/Followers scrolling to top on infinite scroll pagination --- app/javascript/gabsocial/features/followers.js | 1 - app/javascript/gabsocial/features/following.js | 1 - 2 files changed, 2 deletions(-) diff --git a/app/javascript/gabsocial/features/followers.js b/app/javascript/gabsocial/features/followers.js index 7a18e5c7..c6ab14c8 100644 --- a/app/javascript/gabsocial/features/followers.js +++ b/app/javascript/gabsocial/features/followers.js @@ -54,7 +54,6 @@ class Followers extends ImmutablePureComponent { scrollKey='followers' hasMore={hasMore} isLoading={isLoading} - showLoading={isLoading} onLoadMore={this.handleLoadMore} placeholderComponent={AccountPlaceholder} placeholderCount={4} diff --git a/app/javascript/gabsocial/features/following.js b/app/javascript/gabsocial/features/following.js index edefb3fd..af8348b6 100644 --- a/app/javascript/gabsocial/features/following.js +++ b/app/javascript/gabsocial/features/following.js @@ -54,7 +54,6 @@ class Following extends ImmutablePureComponent { scrollKey='following' hasMore={hasMore} isLoading={isLoading} - showLoading={isLoading} onLoadMore={this.handleLoadMore} placeholderComponent={AccountPlaceholder} placeholderCount={4}