Merge branch 'ent-7894-12305-widget-agent-module-no-funciona-bien-dashboards' into 'develop'

Retro-compability

See merge request artica/pandorafms!4350
This commit is contained in:
Daniel Rodriguez 2021-08-11 12:59:33 +00:00
commit 28905d2901
2 changed files with 15 additions and 4 deletions

View File

@ -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 = '<div style="'.$style.'">';
$table_data .= '<table class="widget_agent_module transparent mrgn_0px" cellpadding="1" cellspacing="0" border="0">';
@ -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) {

View File

@ -285,6 +285,8 @@ input[type="image"] {
table,
img {
border: 0px;
width: auto;
height: auto;
}
table pre {