- client: fix settings page if current interface doesn't exist
Closes #664
This commit is contained in:
parent
6f2e852e09
commit
6f014fa53d
|
@ -78,7 +78,8 @@ let Interface = (props) => {
|
||||||
</div>
|
</div>
|
||||||
{interfaceValue &&
|
{interfaceValue &&
|
||||||
<div className="col-sm-12 col-md-6">
|
<div className="col-sm-12 col-md-6">
|
||||||
{renderInterfaceValues(interfaces[interfaceValue])}
|
{interfaces[interfaceValue] &&
|
||||||
|
renderInterfaceValues(interfaces[interfaceValue])}
|
||||||
</div>
|
</div>
|
||||||
}
|
}
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in New Issue