mirror of https://github.com/vector-im/riot-web
Fix right panel buttons highlighting
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>pull/21833/head
parent
3105a7c96a
commit
9c686bf501
|
@ -1299,7 +1299,7 @@ export default createReactClass({
|
|||
);
|
||||
}
|
||||
|
||||
const rightPanel = !RightPanelStore.getSharedInstance().isOpenForGroup
|
||||
const rightPanel = RightPanelStore.getSharedInstance().isOpenForGroup
|
||||
? <RightPanel groupId={this.props.groupId} />
|
||||
: undefined;
|
||||
|
||||
|
|
|
@ -74,7 +74,7 @@ export default class HeaderButtons extends React.Component {
|
|||
const rps = RightPanelStore.getSharedInstance();
|
||||
if (this.state.headerKind === HEADER_KIND_ROOM) {
|
||||
this.setState({phase: rps.visibleRoomPanelPhase});
|
||||
} else if (this.state.head === HEADER_KIND_GROUP) {
|
||||
} else if (this.state.headerKind === HEADER_KIND_GROUP) {
|
||||
this.setState({phase: rps.visibleGroupPanelPhase});
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue