dont set initial phase, show panel when collapsed

This commit is contained in:
Bruno Windels 2018-12-17 15:55:26 +01:00
parent f7b6e9c6fc
commit a734fb9d35
3 changed files with 4 additions and 4 deletions

View file

@ -25,7 +25,7 @@ export default class HeaderButtons extends React.Component {
super(props);
this.state = {
phase: initialPhase,
phase: props.collapsedRhs ? null : initialPhase,
isUserPrivilegedInGroup: null,
};
this.onAction = this.onAction.bind(this);
@ -58,7 +58,7 @@ export default class HeaderButtons extends React.Component {
phase: null,
});
} else {
if (!this.state.phase) {
if (this.props.collapsedRhs) {
dis.dispatch({
action: 'show_right_panel',
});