I have 2 routes
{ path: '', component: DefaultComponent },
{ path: 'second', component: SecondComponent }
And in html
<a [routerLink]="['/']" [routerLinkActive]="['active']">default</a>
<a [routerLink]="['/second']" [routerLinkActive]="['active']">second</a>
When I navigate to the second one both of them have active class. Is this a bug or a wanted
Using:
"@angular/router": "~3.3.0",