Merge branch 'ent-7170-color-de-icono-de-alertas-en-tree-view-black-theme' into 'develop'

fixed visual error

See merge request artica/pandorafms!3926
This commit is contained in:
Daniel Rodriguez 2021-03-17 16:29:41 +00:00
commit b6b399e635
1 changed files with 2 additions and 2 deletions

View File

@ -704,9 +704,9 @@ class Tree
if ((bool) $module['alerts']) {
// Module has alerts triggered.
if ($module_alert_triggered === true) {
$module['alertsImageHTML'] = html_print_image('images/bell_orange.png', true, ['title' => __('Module alerts')]);
$module['alertsImageHTML'] = html_print_image('images/bell_orange.png', true, ['title' => __('Module alerts'), 'style' => 'filter: initial']);
} else {
$module['alertsImageHTML'] = html_print_image('images/bell_green.png', true, ['title' => __('Module alerts')]);
$module['alertsImageHTML'] = html_print_image('images/bell_green.png', true, ['title' => __('Module alerts'), 'style' => 'filter: initial']);
}
}
}