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'),
|
'windows' => __('Windows'),
|
||||||
];
|
];
|
||||||
$table->data[40][0] = html_print_label_input_block(
|
$table->data[40][0] = html_print_label_input_block(
|
||||||
__('rget OS'),
|
__('Target OS'),
|
||||||
html_print_select(
|
html_print_select(
|
||||||
$array_os,
|
$array_os,
|
||||||
'custom_string_2',
|
'custom_string_2',
|
||||||
|
|
|
@ -966,6 +966,11 @@ function processTreeSearch(settings) {
|
||||||
recipient: $("div#tree-controller-recipient_" + settings.cellId),
|
recipient: $("div#tree-controller-recipient_" + settings.cellId),
|
||||||
detailRecipient: {
|
detailRecipient: {
|
||||||
render: function(element, data) {
|
render: function(element, data) {
|
||||||
|
let title = "Module information";
|
||||||
|
if ($(data).find("#tree_view_agent_detail-name").length > 0) {
|
||||||
|
title = "Agent information";
|
||||||
|
}
|
||||||
|
|
||||||
return {
|
return {
|
||||||
open: function() {
|
open: function() {
|
||||||
$("#module_details_window")
|
$("#module_details_window")
|
||||||
|
@ -976,7 +981,7 @@ function processTreeSearch(settings) {
|
||||||
resizable: true,
|
resizable: true,
|
||||||
draggable: true,
|
draggable: true,
|
||||||
modal: true,
|
modal: true,
|
||||||
title: "Info module",
|
title: title,
|
||||||
overlay: {
|
overlay: {
|
||||||
opacity: 0.5,
|
opacity: 0.5,
|
||||||
background: "black"
|
background: "black"
|
||||||
|
|
|
@ -252,7 +252,7 @@ class SecurityHardening extends Widget
|
||||||
];
|
];
|
||||||
|
|
||||||
$inputs[] = [
|
$inputs[] = [
|
||||||
'label' => __('Ingore skipped'),
|
'label' => __('Ignore skipped'),
|
||||||
'id' => 'row_ignore_skipped',
|
'id' => 'row_ignore_skipped',
|
||||||
'class' => 'row_input',
|
'class' => 'row_input',
|
||||||
'arguments' => [
|
'arguments' => [
|
||||||
|
|
Loading…
Reference in New Issue