diff options
author | ThibG <thib@sitedethib.com> | 2018-12-12 22:32:44 +0100 |
---|---|---|
committer | ThibG <thib@sitedethib.com> | 2019-07-21 20:57:42 +0200 |
commit | bd7b1538f17f3aa5b73a691044cf64068f23a231 (patch) | |
tree | ec2119aef7b5b1f37ae62ff2d85aa6d9d3188cf7 /app/javascript/flavours/glitch/features | |
parent | c614abb95dcb226edd60df52bd987adbe83d7b30 (diff) |
[Glitch] Fix followers and followings on account profiles
Partial fix from 55abff8af75b9a8ab541ec68a3603c77e1339e23 Signed-off-by: Thibaut Girka <thib@sitedethib.com>
Diffstat (limited to 'app/javascript/flavours/glitch/features')
-rw-r--r-- | app/javascript/flavours/glitch/features/followers/index.js | 1 | ||||
-rw-r--r-- | app/javascript/flavours/glitch/features/following/index.js | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/app/javascript/flavours/glitch/features/followers/index.js b/app/javascript/flavours/glitch/features/followers/index.js index b0a9efc21..704e0c92e 100644 --- a/app/javascript/flavours/glitch/features/followers/index.js +++ b/app/javascript/flavours/glitch/features/followers/index.js @@ -105,7 +105,6 @@ export default class Followers extends ImmutablePureComponent { shouldUpdateScroll={this.shouldUpdateScroll} prepend={<HeaderContainer accountId={this.props.params.accountId} hideTabs />} alwaysPrepend - alwaysShowScrollbar emptyMessage={emptyMessage} > {accountIds.map(id => diff --git a/app/javascript/flavours/glitch/features/following/index.js b/app/javascript/flavours/glitch/features/following/index.js index baf3730d9..46cc773e7 100644 --- a/app/javascript/flavours/glitch/features/following/index.js +++ b/app/javascript/flavours/glitch/features/following/index.js @@ -100,7 +100,6 @@ export default class Following extends ImmutablePureComponent { shouldUpdateScroll={this.shouldUpdateScroll} prepend={<HeaderContainer accountId={this.props.params.accountId} hideTabs />} alwaysPrepend - alwaysShowScrollbar emptyMessage={emptyMessage} > {accountIds.map(id => |