I have a component that I need to be rendered for numeric routes like /1, /2, /3 etc (where number is :id).
In my component I've declared ngOnInit code
ngOnInit(){
alert();
}
When first time route changes alert fires, but for other route changes it doesn't. I'm wondering why?