mirror of
https://github.com/Icinga/icingaweb2-module-businessprocess.git
synced 2025-12-29 02:09:33 -05:00
ProcessController: improve rendering in dasbboard
This commit is contained in:
parent
e821ccb7a0
commit
370558f740
1 changed files with 5 additions and 3 deletions
|
|
@ -132,12 +132,14 @@ class ProcessController extends Controller
|
|||
array('style' => 'float: right')
|
||||
)
|
||||
);
|
||||
} else {
|
||||
} elseif (! $this->view->compact) {
|
||||
$controls->add(HtmlString::create($this->getTabs()));
|
||||
}
|
||||
$controls->add(Element::create('h1')->setContent($title));
|
||||
if (! $this->view->compact) {
|
||||
$controls->add(Element::create('h1')->setContent($title));
|
||||
}
|
||||
$controls->add(Breadcrumb::create($renderer));
|
||||
if (! $this->showFullscreen) {
|
||||
if (! $this->showFullscreen && ! $this->view->compact) {
|
||||
$controls->add($this->actions());
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue