Merge pull request #1340 from guardicore/config_UI_bug_on_submit

Island UI: fix config import UI bug
This commit is contained in:
Mike Salvatore 2021-07-20 09:29:14 -04:00 committed by GitHub
commit 42dcb697e9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -118,13 +118,13 @@ class ConfigurePageComponent extends AuthComponent {
this.setState({showUnsafeAttackOptionsWarning: false});
}
updateConfig = (callback = null) => {
this.authFetch(CONFIG_URL)
.then(res => res.json())
.then(data => {
this.setInitialConfig(data.configuration);
this.setState({configuration: data.configuration}, callback);
this.setState({configuration: data.configuration,
currentFormData: data.configuration[this.state.selectedSection]}, callback);
})
};