Fix sticky headers over/under extending themselves in the new room list

Fixes https://github.com/vector-im/riot-web/issues/14095
This commit is contained in:
Travis Ralston 2020-06-22 13:09:42 -06:00
parent de227c0650
commit 1a427b8ff7
3 changed files with 49 additions and 12 deletions

View file

@ -677,7 +677,10 @@ class LoggedInView extends React.PureComponent<IProps, IState> {
if (SettingsStore.isFeatureEnabled("feature_new_room_list")) {
// TODO: Supply props like collapsed and disabled to LeftPanel2
leftPanel = (
<LeftPanel2 isMinimized={this.props.collapseLhs || false} />
<LeftPanel2
isMinimized={this.props.collapseLhs || false}
resizeNotifier={this.props.resizeNotifier}
/>
);
}