mirror of
https://github.com/Icinga/icingadb-web.git
synced 2026-05-28 04:36:06 -04:00
HostgroupsController: Preserve limit and sort params when filtering
This commit is contained in:
parent
7204433f5e
commit
9972f11eab
1 changed files with 4 additions and 1 deletions
|
|
@ -32,7 +32,10 @@ class HostgroupsController extends Controller
|
|||
'services_total desc' => t('Total Services')
|
||||
]
|
||||
);
|
||||
$filterControl = $this->createFilterControl($hostgroups);
|
||||
$filterControl = $this->createFilterControl($hostgroups, [
|
||||
$limitControl->getLimitParam(),
|
||||
$sortControl->getSortParam()
|
||||
]);
|
||||
|
||||
$this->filter($hostgroups);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue