angular 8 reload current route on parameter chage code example
Example: angular reload component on route param change
constructor(private router: Router) {
this.router.routeReuseStrategy.shouldReuseRoute = function() {
return false;
};
}