mirror of https://github.com/vector-im/riot-web
don't bind
parent
fa0319f14b
commit
f4b86ca265
|
@ -28,7 +28,6 @@ export default class MessageEditHistoryDialog extends React.Component {
|
||||||
};
|
};
|
||||||
|
|
||||||
componentWillMount() {
|
componentWillMount() {
|
||||||
this.loadMoreEdits = this.loadMoreEdits.bind(this);
|
|
||||||
this.setState({
|
this.setState({
|
||||||
events: [],
|
events: [],
|
||||||
nextBatch: null,
|
nextBatch: null,
|
||||||
|
@ -37,7 +36,7 @@ export default class MessageEditHistoryDialog extends React.Component {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
async loadMoreEdits(backwards) {
|
loadMoreEdits = async (backwards) => {
|
||||||
if (backwards || (!this.state.nextBatch && !this.state.isLoading)) {
|
if (backwards || (!this.state.nextBatch && !this.state.isLoading)) {
|
||||||
// bail out on backwards as we only paginate in one direction
|
// bail out on backwards as we only paginate in one direction
|
||||||
return false;
|
return false;
|
||||||
|
|
Loading…
Reference in New Issue