hide breadcrumbs when collapsed

This commit is contained in:
Bruno Windels 2019-02-12 11:31:50 +01:00
parent 5efd92f3ec
commit 735c9d1121
2 changed files with 8 additions and 2 deletions

View file

@ -72,6 +72,13 @@ export default class RoomBreadcrumbs extends React.Component {
}
render() {
// check for collapsed here and
// not at parent so we keep
// rooms in our state
// when collapsing and expanding
if (this.props.collapsed) {
return null;
}
const avatars = this.state.rooms.map((room) => {
return (
<AccessibleButton key={room.roomId} title={room.name} onClick={() => this._viewRoom(room)}>