Merge pull request #2835 from interworks-morr/fix_backend_sidenav_layout
Fixing case-sensitive issue with Backend Sidenav Layout - Issue #2834
This commit is contained in:
commit
248af140bb
|
|
@ -18,7 +18,7 @@
|
|||
<?php foreach ($sideMenuItems as $sideItemCode => $item): ?>
|
||||
<li
|
||||
class="<?= BackendMenu::isSideMenuItemActive($item) ? 'active' : null ?>"
|
||||
<?= HTML::attributes($item->attributes) ?>
|
||||
<?= Html::attributes($item->attributes) ?>
|
||||
>
|
||||
<a href="<?= $item->url ?>">
|
||||
<span class="nav-icon">
|
||||
|
|
@ -44,4 +44,4 @@
|
|||
<?php endif ?>
|
||||
<?php else: ?>
|
||||
<?= $this->makePartial($contextSidenav) ?>
|
||||
<?php endif ?>
|
||||
<?php endif ?>
|
||||
|
|
|
|||
Loading…
Reference in New Issue