Don't hide the filter editor from the view if the view is compact

refs #10778
This commit is contained in:
Eric Lippmann 2016-02-27 15:57:00 +01:00
parent d8b14cb772
commit 8433bf1fc1
1 changed files with 5 additions and 2 deletions

View File

@ -209,6 +209,7 @@ class Controller extends ModuleActionController
);
$editor = Widget::create('filterEditor');
/** @var \Icinga\Web\Widget\FilterEditor $editor */
call_user_func_array(
array($editor, 'preserveParams'),
array_merge($defaultPreservedParams, $preserveParams ?: array())
@ -221,10 +222,12 @@ class Controller extends ModuleActionController
->setSearchColumns($searchColumns)
->handleRequest($this->getRequest());
if (! $this->view->compact) {
$this->view->filterEditor = $editor;
if ($this->view->compact) {
$editor->setVisible(false);
}
$this->view->filterEditor = $editor;
return $this;
}
}