File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -12,27 +12,27 @@ import {SidebarNavHelper} from '../app-sidebar-nav.service';
1212 *ngSwitchCase="'dropdown'"
1313 [item]="item"
1414 [class.open]="helper.isActive(router, item)"
15- [ngClass]="helper.getClass( item) "
15+ [ngClass]="item | appSidebarNavItemClass "
1616 appNavDropdown
1717 routerLinkActive="open">
1818 </app-sidebar-nav-dropdown>
1919 <app-sidebar-nav-divider
2020 *ngSwitchCase="'divider'"
2121 [item]="item"
22- [ngClass]="helper.getClass( item) "
22+ [ngClass]="item | appSidebarNavItemClass "
2323 [appHtmlAttr]="item.attributes">
2424 </app-sidebar-nav-divider>
2525 <app-sidebar-nav-title
2626 *ngSwitchCase="'title'"
2727 [item]="item"
28- [ngClass]="helper.getClass( item) "
28+ [ngClass]="item | appSidebarNavItemClass "
2929 [appHtmlAttr]="item.attributes">
3030 </app-sidebar-nav-title>
3131 <app-sidebar-nav-label
3232 *ngSwitchCase="'label'"
3333 [item]="item"
3434 class="nav-item"
35- [ngClass]="helper.getClass( item) ">
35+ [ngClass]="item | appSidebarNavItemClass ">
3636 </app-sidebar-nav-label>
3737 <ng-container
3838 *ngSwitchCase="'empty'">
@@ -41,7 +41,7 @@ import {SidebarNavHelper} from '../app-sidebar-nav.service';
4141 *ngSwitchDefault
4242 [item]="item"
4343 class="nav-item"
44- [ngClass]="helper.getClass( item) ">
44+ [ngClass]="item | appSidebarNavItemClass ">
4545 </app-sidebar-nav-link>
4646 </ng-container>
4747 </ng-container>
You can’t perform that action at this time.
0 commit comments