From b92fb34f373ef8a378fa8547ced3d3512eaeeeb3 Mon Sep 17 00:00:00 2001 From: Ildar Kamalov Date: Thu, 28 Mar 2019 16:32:22 +0300 Subject: [PATCH] - client: fix DHCP fields validation --- client/src/components/Settings/Dhcp/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/components/Settings/Dhcp/index.js b/client/src/components/Settings/Dhcp/index.js index af74b8d7..8480a5b5 100644 --- a/client/src/components/Settings/Dhcp/index.js +++ b/client/src/components/Settings/Dhcp/index.js @@ -24,7 +24,7 @@ class Dhcp extends Component { } = this.props.dhcp; const activeDhcpFound = active && active.found; const filledConfig = Object.keys(config).every((key) => { - if (key === 'enabled') { + if (key === 'enabled' || key === 'icmp_timeout_msec') { return true; }