Merge branch 'ent-12553-correccion-de-erratas' into 'develop'
Ent 12553 Corrección de erratas See merge request artica/pandorafms!6817
This commit is contained in:
commit
2baef1ccf2
|
@ -1529,7 +1529,7 @@ $array_os = [
|
|||
'windows' => __('Windows'),
|
||||
];
|
||||
$table->data[40][0] = html_print_label_input_block(
|
||||
__('rget OS'),
|
||||
__('Target OS'),
|
||||
html_print_select(
|
||||
$array_os,
|
||||
'custom_string_2',
|
||||
|
|
|
@ -966,6 +966,11 @@ function processTreeSearch(settings) {
|
|||
recipient: $("div#tree-controller-recipient_" + settings.cellId),
|
||||
detailRecipient: {
|
||||
render: function(element, data) {
|
||||
let title = "Module information";
|
||||
if ($(data).find("#tree_view_agent_detail-name").length > 0) {
|
||||
title = "Agent information";
|
||||
}
|
||||
|
||||
return {
|
||||
open: function() {
|
||||
$("#module_details_window")
|
||||
|
@ -976,7 +981,7 @@ function processTreeSearch(settings) {
|
|||
resizable: true,
|
||||
draggable: true,
|
||||
modal: true,
|
||||
title: "Info module",
|
||||
title: title,
|
||||
overlay: {
|
||||
opacity: 0.5,
|
||||
background: "black"
|
||||
|
|
|
@ -252,7 +252,7 @@ class SecurityHardening extends Widget
|
|||
];
|
||||
|
||||
$inputs[] = [
|
||||
'label' => __('Ingore skipped'),
|
||||
'label' => __('Ignore skipped'),
|
||||
'id' => 'row_ignore_skipped',
|
||||
'class' => 'row_input',
|
||||
'arguments' => [
|
||||
|
|
Loading…
Reference in New Issue