H&D minor fix - visual

Former-commit-id: 57d1e3c62192d9568bfa4db11658e31a8d811a3a
This commit is contained in:
fbsanchez 2019-02-15 14:14:56 +01:00
parent e04a61df98
commit c62c01c4a0
1 changed files with 7 additions and 5 deletions

View File

@ -740,7 +740,7 @@ class HostDevices extends Wizard
// SNMP CONFIGURATION.
$form['inputs'][] = [
'hidden' => 0,
'hidden' => 1,
'block_id' => 'snmp_extra',
'block_content' => [
[
@ -995,10 +995,12 @@ class HostDevices extends Wizard
function SNMPExtraShow(target) {
$("#snmp_options_basic").hide();
$("#snmp_options_v3").hide();
if (target == 3) {
$("#snmp_options_v3").show();
} else {
$("#snmp_options_basic").show();
if (document.getElementsByName("snmp_enabled")[0].checked) {
if (target == 3) {
$("#snmp_options_v3").show();
} else {
$("#snmp_options_basic").show();
}
}
}