Fix right panel buttons highlighting

Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
Michael Telatynski 2020-01-05 20:30:01 +00:00
parent 65954b1e1b
commit fb754b795c
2 changed files with 2 additions and 2 deletions

View file

@ -1299,7 +1299,7 @@ export default createReactClass({
); );
} }
const rightPanel = !RightPanelStore.getSharedInstance().isOpenForGroup const rightPanel = RightPanelStore.getSharedInstance().isOpenForGroup
? <RightPanel groupId={this.props.groupId} /> ? <RightPanel groupId={this.props.groupId} />
: undefined; : undefined;

View file

@ -74,7 +74,7 @@ export default class HeaderButtons extends React.Component {
const rps = RightPanelStore.getSharedInstance(); const rps = RightPanelStore.getSharedInstance();
if (this.state.headerKind === HEADER_KIND_ROOM) { if (this.state.headerKind === HEADER_KIND_ROOM) {
this.setState({phase: rps.visibleRoomPanelPhase}); 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}); this.setState({phase: rps.visibleGroupPanelPhase});
} }
} }