- client: fix DHCP fields validation
This commit is contained in:
parent
ffd9f1aaa9
commit
b92fb34f37
|
@ -24,7 +24,7 @@ class Dhcp extends Component {
|
||||||
} = this.props.dhcp;
|
} = this.props.dhcp;
|
||||||
const activeDhcpFound = active && active.found;
|
const activeDhcpFound = active && active.found;
|
||||||
const filledConfig = Object.keys(config).every((key) => {
|
const filledConfig = Object.keys(config).every((key) => {
|
||||||
if (key === 'enabled') {
|
if (key === 'enabled' || key === 'icmp_timeout_msec') {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue