diff --git a/pandora_console/include/javascript/tree/TreeController.js b/pandora_console/include/javascript/tree/TreeController.js index ca99592baf..ef4b10bd1f 100644 --- a/pandora_console/include/javascript/tree/TreeController.js +++ b/pandora_console/include/javascript/tree/TreeController.js @@ -489,8 +489,10 @@ var TreeController = { // Load the status counters var hasCounters = _processNodeCounters($content, element.counters, element.type); //Don't show empty groups - if (!hasCounters) { - return; + if (element.type == 'agent') { + if (!hasCounters) { + return; + } } // If exist the detail container, show the data if (typeof controller.detailRecipient !== 'undefined') {