Skip to content

Commit

Permalink
topnavbar menu item highlighting fix
Browse files Browse the repository at this point in the history
This fixes an issue with the topnavbar where the highlighting
of the storage menu item gets lost, when switching modul context
via the tabbed navigation (Devices/Pools/Volumes).
  • Loading branch information
fbergkemper committed Sep 9, 2016
1 parent f78250d commit 5c2a985
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions module/Application/config/module.config.php
Expand Up @@ -155,6 +155,28 @@
array(
'label' => _('Storages'),
'route' => 'storage',
'pages' => array(
array(
'label' => _('Pool'),
'route' => 'pool',
'action' => 'index'
),
array(
'label' => _('Pool'),
'route' => 'pool',
'action' => 'details'
),
array(
'label' => _('Volumes'),
'route' => 'media',
'action' => 'index'
),
array(
'label' => _('Volumes'),
'route' => 'media',
'action' => 'details'
),
),
),
array(
'label' => _('Director'),
Expand Down

0 comments on commit 5c2a985

Please sign in to comment.