I'm creating a sideNav bar and the active button won't highlight. I assume it's because the active route is "/app/carrier-alias" and the routerLink on the button element is "/carrier-alias". Does anybody know any work arounds?
<button mat-button
*appAllowedRoles="[adminRole.CARRIER_ALIAS_ADMIN]"
routerLink="/carrier-alias"
routerLinkActive="bg-primary"
[routerLinkActiveOptions]="{exact: false}">
Carrier Alias
</button>