From 193d6bf2d2fbceb77c3ef04e81ad1ad7bec2f21e Mon Sep 17 00:00:00 2001 From: Daniel Barbero Martin Date: Fri, 26 Mar 2021 10:37:44 +0100 Subject: [PATCH] fixed minor error --- .../include/lib/Dashboard/Widgets/system_group_status.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pandora_console/include/lib/Dashboard/Widgets/system_group_status.php b/pandora_console/include/lib/Dashboard/Widgets/system_group_status.php index f784c76cea..9c3391f8ff 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/system_group_status.php +++ b/pandora_console/include/lib/Dashboard/Widgets/system_group_status.php @@ -164,6 +164,9 @@ class SystemGroupStatusWidget extends Widget // This forces at least a first configuration. $this->configurationRequired = false; + if (empty($this->values['groupId']) === true) { + $this->configurationRequired = true; + } $this->overflow_scrollbars = false; } @@ -299,6 +302,7 @@ class SystemGroupStatusWidget extends Widget 'return' => true, 'multiple' => true, 'returnAllGroup' => $return_all_group, + 'required' => true, ], ];