dont set initial phase, show panel when collapsed
This commit is contained in:
parent
f7b6e9c6fc
commit
a734fb9d35
3 changed files with 4 additions and 4 deletions
|
@ -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',
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue