Skip to content

Commit

Permalink
Fix #799 React error in FileBrowser paging
Browse files Browse the repository at this point in the history
  • Loading branch information
cwparsons authored and AJIXuMuK committed Apr 11, 2021
1 parent f64b2d1 commit abb6416
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ export class FileBrowser extends React.Component<IFileBrowserProps, IFileBrowser
selectionPreservedOnEmptyClick={true}
enterModalSelectionOnTouch={true}
onRenderRow={this._onRenderRow}
onRenderMissingItem={this._loadNextDataRequest}
onRenderMissingItem={() => { this._loadNextDataRequest(); return null; }}
/>) :
(<TilesList
fileBrowserService={this.props.fileBrowserService}
Expand Down

0 comments on commit abb6416

Please sign in to comment.