Merge pull request #4329 from matrix-org/travis/fix-breadcrumbs
Revert componentDidMount changes on breadcrumbs
This commit is contained in:
commit
9e14e2d77b
2 changed files with 4 additions and 2 deletions
|
@ -44,7 +44,8 @@ const LeftPanel = createReactClass({
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
|
|
||||||
componentDidMount: function() {
|
// TODO: [REACT-WARNING] Move this to constructor
|
||||||
|
UNSAFE_componentWillMount: function() {
|
||||||
this.focusedElement = null;
|
this.focusedElement = null;
|
||||||
|
|
||||||
this._breadcrumbsWatcherRef = SettingsStore.watchSetting(
|
this._breadcrumbsWatcherRef = SettingsStore.watchSetting(
|
||||||
|
|
|
@ -49,7 +49,8 @@ export default class RoomBreadcrumbs extends React.Component {
|
||||||
this._scroller = createRef();
|
this._scroller = createRef();
|
||||||
}
|
}
|
||||||
|
|
||||||
componentDidMount() {
|
// TODO: [REACT-WARNING] Move this to constructor
|
||||||
|
UNSAFE_componentWillMount() { // eslint-disable-line camelcase
|
||||||
this._dispatcherRef = dis.register(this.onAction);
|
this._dispatcherRef = dis.register(this.onAction);
|
||||||
|
|
||||||
const storedRooms = SettingsStore.getValue("breadcrumb_rooms");
|
const storedRooms = SettingsStore.getValue("breadcrumb_rooms");
|
||||||
|
|
Loading…
Reference in a new issue