I'm creating dynamic route like this in menu
<li *ngFor="let item of menu">
<a *ngSwitchCase="'link'" routerLinkActive="active" [routerLink]="item.routerLink">
<span class="pr-2">{{item.title}} </span></a>
</li>
issue is when i click on the same link second time i cannot call that route i have to click on other menu item then click on old one to work
I have this route in navigation_menu.component
and right side component the content is loaded.
Any solution to fix this issue. Thanks