Merge pull request #4969 from matrix-org/travis/room-list/breadcrumbs-headers

Update sticky headers when breadcrumbs pop in or out
pull/21833/head
J. Ryan Stinnett 2020-07-14 09:36:20 +01:00 committed by GitHub
commit 6735724379
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

View File

@ -111,6 +111,10 @@ export default class LeftPanel2 extends React.Component<IProps, IState> {
const newVal = BreadcrumbsStore.instance.visible;
if (newVal !== this.state.showBreadcrumbs) {
this.setState({showBreadcrumbs: newVal});
// Update the sticky headers too as the breadcrumbs will be popping in or out.
if (!this.listContainerRef.current) return; // ignore: no headers to sticky
this.handleStickyHeaders(this.listContainerRef.current);
}
};