mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-07-27 07:44:04 +02:00
Drop the `inline' view property, as it's not used anywhere
This commit is contained in:
parent
17262ae2bd
commit
5e92171ab7
@ -22,10 +22,6 @@ class Monitoring_ListController extends Controller
|
|||||||
{
|
{
|
||||||
$this->createTabs();
|
$this->createTabs();
|
||||||
$this->view->compact = $this->_request->getParam('view') === 'compact';
|
$this->view->compact = $this->_request->getParam('view') === 'compact';
|
||||||
if ($this->_request->getParam('view') === 'inline') {
|
|
||||||
$this->view->compact = true;
|
|
||||||
$this->view->inline = true;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -59,8 +59,7 @@
|
|||||||
<div class="alertsummary-flex">
|
<div class="alertsummary-flex">
|
||||||
<?= $this->partial('list/notifications.phtml', array(
|
<?= $this->partial('list/notifications.phtml', array(
|
||||||
'notifications' => $this->recentAlerts,
|
'notifications' => $this->recentAlerts,
|
||||||
'compact' => true,
|
'compact' => true
|
||||||
'inline' => true
|
|
||||||
)); ?>
|
)); ?>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -71,8 +70,7 @@
|
|||||||
<div class="alertsummary-flex">
|
<div class="alertsummary-flex">
|
||||||
<?= $this->partial('list/notifications.phtml', array(
|
<?= $this->partial('list/notifications.phtml', array(
|
||||||
'notifications' => $this->notifications,
|
'notifications' => $this->notifications,
|
||||||
'compact' => true,
|
'compact' => true
|
||||||
'inline' => true
|
|
||||||
)); ?>
|
)); ?>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user