mirror of
https://github.com/Icinga/icingaweb2-module-businessprocess.git
synced 2026-05-28 04:34:08 -04:00
process/show: Don't show the control separator when in fullscreen or on the dashboard
This commit is contained in:
parent
0a5ada9bf1
commit
d690c07ed8
1 changed files with 2 additions and 1 deletions
|
|
@ -123,7 +123,6 @@ class ProcessController extends Controller
|
|||
protected function prepareControls($bp, $renderer)
|
||||
{
|
||||
$controls = $this->controls();
|
||||
$controls->getAttributes()->add('class', 'separated');
|
||||
|
||||
if ($this->showFullscreen) {
|
||||
$controls->getAttributes()->add('class', 'want-fullscreen');
|
||||
|
|
@ -140,7 +139,9 @@ class ProcessController extends Controller
|
|||
|
||||
if (! ($this->showFullscreen || $this->view->compact)) {
|
||||
$controls->add($this->getProcessTabs($bp, $renderer));
|
||||
$controls->getAttributes()->add('class', 'separated');
|
||||
}
|
||||
|
||||
$controls->add(Breadcrumb::create(clone $renderer));
|
||||
if (! $this->showFullscreen && ! $this->view->compact) {
|
||||
$controls->add(
|
||||
|
|
|
|||
Loading…
Reference in a new issue