diff --git a/pandora_console/include/lib/Dashboard/Widgets/agent_module.php b/pandora_console/include/lib/Dashboard/Widgets/agent_module.php index a0a33734ae..bc8d1b49c7 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/agent_module.php +++ b/pandora_console/include/lib/Dashboard/Widgets/agent_module.php @@ -413,7 +413,7 @@ class AgentModuleWidget extends Widget array $visualData, array $allModules ):string { - $style = 'display:flex; width:100%; height:100%; margin: 10px;'; + $style = 'display:flex; width:100%; margin: 10px;'; $table_data = '
'; $table_data .= ''; @@ -645,9 +645,18 @@ class AgentModuleWidget extends Widget $all_modules = $target_modules; } else { - $all_modules = Module::search( - ['id_agente_modulo' => $target_modules] - ); + if (is_array($target_modules) === true + || is_numeric($target_modules) === true + ) { + $all_modules = Module::search( + ['id_agente_modulo' => $target_modules] + ); + } else { + // From previous definitions. + $all_modules = Module::search( + ['id_agente_modulo' => explode(',', $target_modules)] + ); + } } if ($all_modules !== null) { diff --git a/pandora_console/include/styles/pandora.css b/pandora_console/include/styles/pandora.css index 25c6340d64..2639d010a8 100644 --- a/pandora_console/include/styles/pandora.css +++ b/pandora_console/include/styles/pandora.css @@ -285,6 +285,8 @@ input[type="image"] { table, img { border: 0px; + width: auto; + height: auto; } table pre {