mirror of
https://github.com/bitwarden/browser
synced 2025-12-24 04:04:24 +00:00
* [PS-1114] hide reporting sidebar if only events * [PS-1114] add orgRedirectGuard * [PS-1114] highlight tabs based on route subset * [PS-1114] redirect to correct child route on tab - Use new OrgRedirectGuard * [PS-1114] add settings redirect using guard - refactored guard to accept array of strings * [EC-678] [EC-673] remove remaining methods * [EC-678][EC-673] address PR feedback - change switch to if statements - remove ternary
15 lines
323 B
HTML
15 lines
323 B
HTML
<a
|
|
bitTabListItem
|
|
[routerLink]="disabled ? null : route"
|
|
routerLinkActive
|
|
[routerLinkActiveOptions]="routerLinkMatchOptions"
|
|
#rla="routerLinkActive"
|
|
[active]="rla.isActive"
|
|
[disabled]="disabled"
|
|
[attr.aria-disabled]="disabled"
|
|
ariaCurrentWhenActive="page"
|
|
role="link"
|
|
>
|
|
<ng-content></ng-content>
|
|
</a>
|