fixed visual error

This commit is contained in:
marcos 2021-03-22 17:02:30 +01:00
parent 390d9df706
commit 51ea2d569d

View File

@ -604,9 +604,11 @@ function snmp_browser_print_oid(
if ($custom_action != '') { if ($custom_action != '') {
$table->head[0] = '<span id="snmp_custom_action">'.$closer.$custom_action.'</span>'; $table->head[0] = '<span id="snmp_custom_action">'.$closer.$custom_action.'</span>';
} else { } else {
$table->headstyle[0] = 'text-align: left';
$table->head[0] = $closer; $table->head[0] = $closer;
} }
$table->headstyle[1] = 'text-align: left';
$table->head[1] = __('OID Information'); $table->head[1] = __('OID Information');
$output .= html_print_table($table, true); $output .= html_print_table($table, true);
@ -636,7 +638,7 @@ function snmp_browser_print_oid(
__('Create network component'), __('Create network component'),
'create_network_component', 'create_network_component',
false, false,
'class="sub add float-left"', 'class="sub add float-left mrgn_right_20px"',
true true
); );