We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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
Account / Expenses / Expenses
Account / Expenses
The text was updated successfully, but these errors were encountered:
fix: issue coreui#10
d7df6fe
Potential fix to repeated breadcrumb from inherited data dictionary.
Merge pull request coreui#10 from damingerdai/develop
f10cbe9
Develop
No branches or pull requests
When a route inherits the data dictionary from its parent, the breadcrumb is repeated. I will demonstrate:
This will produce:
Account / Expenses / Expenses
when you are on the /account/expenses path. I was expecting:Account / Expenses
The text was updated successfully, but these errors were encountered: