IcingaHostServiceTable: sort host services by name

fixes #12752
This commit is contained in:
Thomas Gelf 2016-10-11 14:41:25 +00:00
parent 0ac7c0f448
commit fe332897be
1 changed files with 1 additions and 1 deletions

View File

@ -88,7 +88,7 @@ class IcingaHostServiceTable extends QuickTable
array('h' => 'icinga_host'),
'h.id = s.host_id',
array()
);
)->order('s.object_name');
return $query;
}