#13044 change enable for disabled message

This commit is contained in:
Jonathan 2024-03-18 09:52:41 +01:00
parent c1bfeb93f5
commit cac66629c6
1 changed files with 2 additions and 2 deletions

View File

@ -210,8 +210,8 @@ class Overview extends Element
$total_disabled_agents = round((($total - count($enabled_agents)) * 100) / $total);
$total_enabled_agents = round((count($enabled_agents) * 100) / $total);
} else {
$total_disabled_agents = 0;
$total_enabled_agents = 100;
$total_disabled_agents = 100;
$total_enabled_agents = 0;
}
if ($total_enabled_agents > 0) {