- client: fix DHCP fields validation

This commit is contained in:
Ildar Kamalov 2019-03-28 16:32:22 +03:00 committed by Simon Zolin
parent ffd9f1aaa9
commit b92fb34f37
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}