From 0128509605ed90ee5a29d6af2347ab32bd46aeb9 Mon Sep 17 00:00:00 2001 From: Thibaut Girka Date: Wed, 4 Sep 2019 11:23:26 +0200 Subject: [PATCH] Fix loading more items in account following/followers --- app/javascript/flavours/glitch/features/followers/index.js | 1 - app/javascript/flavours/glitch/features/following/index.js | 1 - 2 files changed, 2 deletions(-) diff --git a/app/javascript/flavours/glitch/features/followers/index.js b/app/javascript/flavours/glitch/features/followers/index.js index c57a2b1a2..0f04b9ddc 100644 --- a/app/javascript/flavours/glitch/features/followers/index.js +++ b/app/javascript/flavours/glitch/features/followers/index.js @@ -60,7 +60,6 @@ export default class Followers extends ImmutablePureComponent { } handleLoadMore = debounce(() => { - e.preventDefault(); this.props.dispatch(expandFollowers(this.props.params.accountId)); }, 300, { leading: true }); diff --git a/app/javascript/flavours/glitch/features/following/index.js b/app/javascript/flavours/glitch/features/following/index.js index b61f83988..279c27500 100644 --- a/app/javascript/flavours/glitch/features/following/index.js +++ b/app/javascript/flavours/glitch/features/following/index.js @@ -60,7 +60,6 @@ export default class Following extends ImmutablePureComponent { } handleLoadMore = debounce(() => { - e.preventDefault(); this.props.dispatch(expandFollowing(this.props.params.accountId)); }, 300, { leading: true });