mirror of https://github.com/vector-im/riot-web
set state in ctor
parent
f4b86ca265
commit
39c96b15d8
|
@ -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) => {
|
||||
|
|
Loading…
Reference in New Issue