Island UI: fix a bug that caused the config UI to remain the same even on configuration submit

This commit is contained in:
VakarisZ 2021-07-20 14:43:53 +03:00
parent 0000486f20
commit d9cf28251f
1 changed files with 2 additions and 2 deletions

View File

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