Skip to content

Commit

Permalink
monitoring: Remove icon from tab for multiple selected services
Browse files Browse the repository at this point in the history
refs #5543
  • Loading branch information
lippserd committed Nov 10, 2015
1 parent 818105b commit 96a1249
Showing 1 changed file with 2 additions and 3 deletions.
Expand Up @@ -39,13 +39,12 @@ public function init()
$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');
}
Expand Down

0 comments on commit 96a1249

Please sign in to comment.