I have this two path:
{ path: "evidencija/:type/:specId/:activeIndex", component: VpnEvidencijaFlowComponent },
{ path: "evidencija/:type/:offerId/:specId/:activeIndex", component: VpnEvidencijaFlowComponent },
In ts i have this:
this.router.navigate(['/evidencija', this.type, children.key, 0], {queryParams: this.queries});
Problem is that i get all of this params but it set undefined on place where should be offerId but i dont have it in some cases. Any suggestion why do i get undefined in url ?