[Glitch] Fix LoadMore usage in account media gallery

(Even though that codepath is probably never actually used…)
remotes/1700548219064219628/signup-info-prompt
Thibaut Girka 2018-12-11 18:51:01 +01:00 committed by ThibG
parent 73ee38f485
commit 5f581d7c3c
1 changed files with 2 additions and 1 deletions

View File

@ -35,7 +35,7 @@ class LoadMoreMedia extends ImmutablePureComponent {
return (
<LoadMore
disabled={this.props.disabled}
onLoadMore={this.handleLoadMore}
onClick={this.handleLoadMore}
/>
);
}
@ -124,6 +124,7 @@ export default class AccountGallery extends ImmutablePureComponent {
<LoadMoreMedia
key={'more:' + medias.getIn(index + 1, 'id')}
maxId={index > 0 ? medias.getIn(index - 1, 'id') : null}
onLoadMore={this.handleLoadMore}
/>
) : (
<MediaItem