diff --git a/monkey/monkey_island/cc/ui/src/components/pages/ConfigurePage.js b/monkey/monkey_island/cc/ui/src/components/pages/ConfigurePage.js index 4d7fdd2d0..1f651f173 100644 --- a/monkey/monkey_island/cc/ui/src/components/pages/ConfigurePage.js +++ b/monkey/monkey_island/cc/ui/src/components/pages/ConfigurePage.js @@ -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); }) };