I have a switch to shop function which is controlled by a header component and displays a dashboard for that venue.
In that header component, I navigate to dashboard route, even if I already in that route.
this.router.navigate(['/venues', this.currentVenue._id, 'dashboard']);
But it doesn't trigger ngOnInit hook again so my view is not reloaded.
What is the correct workaround for such case?