#12324 Fixed group status

This commit is contained in:
Daniel Maya 2023-12-19 15:02:29 +01:00
parent 4f72ea91a5
commit f1f8f40241
1 changed files with 3 additions and 1 deletions

View File

@ -293,6 +293,8 @@ class GroupsStatusWidget extends Widget
(bool) $this->values['groupRecursion']
);
$style = 'min-width:200px; min-height:460px;';
$data = '<div class="widget-groups-status"><span>';
$data .= ui_print_group_icon(
$this->values['groupId'],
@ -541,9 +543,9 @@ class GroupsStatusWidget extends Widget
$table->data[1][0] = __('Not agents in this group');
$data .= html_print_table($table, true);
$data .= '</div>';
$style .= 'justify-content: start; margin-top: 20px';
}
$style = 'min-width:200px; min-height:460px;';
$output = '<div class="container-center" style="'.$style.'">';
$output .= $data;
$output .= '</div>';