set state in ctor

pull/21833/head
Bruno Windels 2019-06-26 15:51:46 +02:00
parent f4b86ca265
commit 39c96b15d8
1 changed files with 4 additions and 3 deletions

View File

@ -27,13 +27,14 @@ export default class MessageEditHistoryDialog extends React.Component {
mxEvent: PropTypes.object.isRequired, mxEvent: PropTypes.object.isRequired,
}; };
componentWillMount() { constructor(props) {
this.setState({ super(props);
this.state = {
events: [], events: [],
nextBatch: null, nextBatch: null,
isLoading: true, isLoading: true,
isTwelveHour: SettingsStore.getValue("showTwelveHourTimestamps"), isTwelveHour: SettingsStore.getValue("showTwelveHourTimestamps"),
}); };
} }
loadMoreEdits = async (backwards) => { loadMoreEdits = async (backwards) => {