mirror of
https://github.com/Icinga/icingadb-web.git
synced 2026-05-28 04:36:06 -04:00
ServicesController: Preserve limit, sort and view params when filtering
This commit is contained in:
parent
4313b9b19a
commit
7204433f5e
1 changed files with 5 additions and 1 deletions
|
|
@ -56,7 +56,11 @@ class ServicesController extends Controller
|
|||
]
|
||||
);
|
||||
$viewModeSwitcher = $this->createViewModeSwitcher();
|
||||
$filterControl = $this->createFilterControl($services);
|
||||
$filterControl = $this->createFilterControl($services, [
|
||||
$limitControl->getLimitParam(),
|
||||
$sortControl->getSortParam(),
|
||||
$viewModeSwitcher->getViewModeParam()
|
||||
]);
|
||||
|
||||
$services->peekAhead($compact);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue