mirror of
https://github.com/Icinga/icingaweb2-module-director.git
synced 2025-07-29 08:44:11 +02:00
ObjectSetTable: fix on pgsql
This commit is contained in:
parent
4d050834db
commit
7c2a3f254b
@ -23,6 +23,7 @@ This version hasn't been released yet
|
||||
* FIX: Template usage table had no header (#2780)
|
||||
* FIX: Strikethrough for deactivated services in applied Service Set (#2746, #2766)
|
||||
* FIX: editing multi-selected services with the same name has been fixed (#2798)
|
||||
* FIX: Service Sets table with PostgreSQL (#2799)
|
||||
|
||||
### Icinga Configuration
|
||||
* FEATURE: render fallback template for IfW 1.11 for Icinga < 2.14 (#2776)
|
||||
|
@ -22,7 +22,7 @@ class ObjectSetTable extends ZfQueryBasedTable
|
||||
'os.object_name',
|
||||
'os.description',
|
||||
'os.assign_filter',
|
||||
'service_object_name',
|
||||
'o.object_name',
|
||||
];
|
||||
|
||||
private $type;
|
||||
@ -98,7 +98,6 @@ class ObjectSetTable extends ZfQueryBasedTable
|
||||
'object_type' => 'os.object_type',
|
||||
'assign_filter' => 'os.assign_filter',
|
||||
'description' => 'os.description',
|
||||
'service_object_name' => 'o.object_name',
|
||||
'count_services' => 'COUNT(DISTINCT o.uuid)',
|
||||
];
|
||||
if ($this->branchUuid) {
|
||||
@ -185,7 +184,6 @@ class ObjectSetTable extends ZfQueryBasedTable
|
||||
->group('object_type')
|
||||
->group('assign_filter')
|
||||
->group('description')
|
||||
->group('service_object_name')
|
||||
->group('count_services');
|
||||
}
|
||||
} else {
|
||||
|
Loading…
x
Reference in New Issue
Block a user