#8642 Fixed heatmap widget

This commit is contained in:
Daniel Maya 2023-03-14 12:52:44 +01:00
parent 62d1249fe0
commit a7a283fe22
1 changed files with 1 additions and 1 deletions

View File

@ -381,7 +381,7 @@ class Heatmap
}
$id_grupo = '';
if (empty($this->filter) === false && current($this->filter) != 0) {
if (empty($this->filter) === false && empty(current($this->filter)) === false) {
$id_grupo = ' AND id_grupo IN ('.implode(',', $this->filter).')';
}