I have the following route:
{
path: 'introducer/:introducerId/branches/create',
component: IntroducerBranchesCreateComponent,
data: {
pageTitle: 'Add branch',
breadcrumbs: [
{ title: 'Branches', link: '/introducer/' + :introducerId + '/branches' },
{ title: 'Add', link: '' },
],
},
},
In the breadcrumbs array I would like to populate the link property using the route param :introducerId but have been unable to do so. Is there a way to do this?