You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
hi @daoudaDiallo thank for this big tools
i am try to use aclService hide/show somes action on my application but when i use it like this:
html: <li class="liste-menu" routerLinkActive="active" *ngIf="can('utilisateurs')"> <a routerLink="/contact" title="Contact"> <img src="../../../../assets/img/sidebar/37-8.png" alt="Contact"> <span class="menu-item-parent">{{'Contact' | i18n}}</span> </a> </li>
ok thank for your answer i fix the issue by using like this : <li class="liste-menu" routerLinkActive="active" *ngIf="aclService.can('utilisateurs')"> <a routerLink="/contact" title="Contact"> <img src="../../../../assets/img/sidebar/37-8.png" alt="Contact"> <span class="menu-item-parent">{{'Contact' | i18n}}</span> </a> </li>
i use aclService.can('utilisateurs') instead of can("utilisateurs) in *ngIf
hi @daoudaDiallo thank for this big tools
i am try to use aclService hide/show somes action on my application but when i use it like this:
html:
<li class="liste-menu" routerLinkActive="active" *ngIf="can('utilisateurs')"> <a routerLink="/contact" title="Contact"> <img src="../../../../assets/img/sidebar/37-8.png" alt="Contact"> <span class="menu-item-parent">{{'Contact' | i18n}}</span> </a> </li>
component:
i get this error fix this issue. please help
The text was updated successfully, but these errors were encountered: