monitoring: Remove icon from tab for multiple selected services

refs #5543
This commit is contained in:
Eric Lippmann 2015-11-10 13:23:08 +01:00
parent 818105bc45
commit 96a12495c3
1 changed files with 2 additions and 3 deletions

View File

@ -39,13 +39,12 @@ class ServicesController extends Controller
$this->getTabs()->add(
'show',
array(
'label' => $this->translate('Services') . sprintf(' (%d)', count($this->serviceList)),
'title' => sprintf(
$this->translate('Show summarized information for %u services'),
count($this->serviceList)
),
'label' => $this->translate('Services') . sprintf(' (%d)', count($this->serviceList)),
'url' => Url::fromRequest(),
'icon' => 'services'
'url' => Url::fromRequest()
)
)->extend(new DashboardAction())->extend(new MenuAction())->activate('show');
}