Repo:
- Create some pages and include them on the main menu.
- Add the MenuWidget to the Default layer and check the display as breadcrumb option
- Create a new page and do not add it to the navigation menu
-
View the new page
Outcome - The full menu is shown where the breadcrumb should be.
Expected - Depending on selected options, home page and current page link if selected
The code is in MenuWidgetPartDriver.Display().
if (part.Breadcrumb && selectedPath != null) {
menuItems = selectedPath;
Change to...
if (part.Breadcrumb) {
menuItems = selectedPath ?? Enumerable.Empty<MenuItem>();