OOB 'breadcrumbs' widget shows "Surveys" when "Surveys and Assessments" widget is added to any OOB portal page that already has a widget that emits "sp.update.breadcrumbs" eventIssue Go to any Service Portal page that has "breadcrumbs" widget and also has a base widget that emits the event "sp.update.breadcrumbs"Example: "emp_taxonomy_topic" page in ESC portal that has the breadcrumbs widget and also has "Topic Content" widget which emits the event "sp.update.breadcrumbs" Now, Try to add the OOB "Surveys and Assessments" onto this page using Service Portal page designer and come back to the Taxonomy Topic page:Example: /esc?id=emp_taxonomy_topic&topic_id=<topic_id> Observe that the breadcrumbs show "My Surveys" like below: CauseThis issue is happening because the "sp.update.breadcrumbs" event is emitted in "Surveys and Assessments" added to the portal page.As the base widget and this widget both are emitting the "sp.update.breadcrumbs" events, the system is randomly generating breadcrumbs from the surveys widget instead.Resolution Make a copy/clone of the OOB "Surveys and Assessments" widget.Comment out line no.64 in Client script where the event is emitted and save the changes.$scope.$emit('sp.update.breadcrumbs', breadcrumbs) Add this cloned widget in place of the OOB widget "Surveys and Assessments" using the portal page designer.