Closed
Description
When a route inherits the data dictionary from its parent, the breadcrumb is repeated. I will demonstrate:
{
path: '',
data: {
title: 'Account'
},
children: [{
path: 'expenses',
children: [{
path: '',
data: {
title: 'Expenses'
},
children: [{
path: '',
component: ExpensesComponent,
}, {
path: 'view/:id',
component: ExpenseViewComponent,
resolve: {
expense: ExpenseResolver
},
data: {
title: 'Expense View'
}
}]
}]
}
This will produce: Account / Expenses / Expenses
when you are on the /account/expenses path. I was expecting: Account / Expenses
Metadata
Metadata
Assignees
Labels
No labels