forked from p34709852/monkey
Island: Set correct default config tab on refresh
This commit is contained in:
parent
c0514e1359
commit
6acd9061a3
|
@ -50,6 +50,13 @@ class ConfigurePageComponent extends AuthComponent {
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
componentDidUpdate() {
|
||||||
|
if (!this.getSectionsOrder().includes(this.currentSection)) {
|
||||||
|
this.currentSection = this.getSectionsOrder()[0]
|
||||||
|
this.setState({selectedSection: this.currentSection})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
getSectionsOrder() {
|
getSectionsOrder() {
|
||||||
let islandMode = this.props.islandMode ? this.props.islandMode : 'advanced'
|
let islandMode = this.props.islandMode ? this.props.islandMode : 'advanced'
|
||||||
return CONFIGURATION_TABS_PER_MODE[islandMode];
|
return CONFIGURATION_TABS_PER_MODE[islandMode];
|
||||||
|
|
Loading…
Reference in New Issue