Skip to content

Commit

Permalink
monitoring: Remove icon from tab for multiple selected hosts
Browse files Browse the repository at this point in the history
refs #5543
  • Loading branch information
lippserd committed Nov 10, 2015
1 parent 317bb24 commit 5c849d2
Showing 1 changed file with 2 additions and 3 deletions.
Expand Up @@ -37,13 +37,12 @@ public function init()
$this->getTabs()->add(
'show',
array(
'label' => $this->translate('Hosts') . sprintf(' (%d)', count($this->hostList)),
'title' => sprintf(
$this->translate('Show summarized information for %u hosts'),
count($this->hostList)
),
'label' => $this->translate('Hosts') . sprintf(' (%d)', count($this->hostList)),
'url' => Url::fromRequest(),
'icon' => 'host'
'url' => Url::fromRequest()
)
)->extend(new DashboardAction())->extend(new MenuAction())->activate('show');
$this->view->listAllLink = Url::fromRequest()->setPath('monitoring/list/hosts');
Expand Down

0 comments on commit 5c849d2

Please sign in to comment.