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->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">
|
||||
<?= $this->partial('list/notifications.phtml', array(
|
||||
'notifications' => $this->recentAlerts,
|
||||
'compact' => true,
|
||||
'inline' => true
|
||||
'compact' => true
|
||||
)); ?>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -71,8 +70,7 @@
|
|||
<div class="alertsummary-flex">
|
||||
<?= $this->partial('list/notifications.phtml', array(
|
||||
'notifications' => $this->notifications,
|
||||
'compact' => true,
|
||||
'inline' => true
|
||||
'compact' => true
|
||||
)); ?>
|
||||
</div>
|
||||
</div>
|
||||
|
|
Loading…
Reference in New Issue