diff --git a/client/src/install/Setup/Settings.js b/client/src/install/Setup/Settings.js index f8ff35a2..0eec2536 100644 --- a/client/src/install/Setup/Settings.js +++ b/client/src/install/Setup/Settings.js @@ -63,11 +63,19 @@ const renderInterfaces = (interfaces => ( class Settings extends Component { componentDidMount() { - const { web, dns } = this.props.config; + const { + webIp, webPort, dnsIp, dnsPort, + } = this.props; this.props.validateForm({ - web, - dns, + web: { + ip: webIp, + port: webPort, + }, + dns: { + ip: dnsIp, + port: dnsPort, + }, }); }