Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,11 @@ export function BreadcrumbsDataSection({
if (viewAllButton?.contains(element)) {
return false;
}
// Third-party packages (e.g. Pendo) use a container with id "pendo-guide-container".
// If the click is inside that container, treat it as an internal click.
if (element.closest('#pendo-guide-container')) {
return false;
}
return true;
},
}
Expand Down
Loading