1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-08 21:42:24 +03:00

set state in ctor

This commit is contained in:
Bruno Windels
2019-06-26 15:51:46 +02:00
parent f4b86ca265
commit 39c96b15d8

View File

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