We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b9beafb commit 3d17d04Copy full SHA for 3d17d04
public/pages/workflow_detail/workflow_detail.tsx
@@ -128,7 +128,10 @@ export function WorkflowDetail(props: WorkflowDetailProps) {
128
}
129
};
130
useEffect(() => {
131
- const links = document.querySelectorAll(`a[href="/app/home"]`); // this will catch the home page buttons in core OSD.
+ // try to catch as many external links as possible, particularly
132
+ // ones that will go to the home page, or different plugins within
133
+ // the side navigation.
134
+ const links = document.querySelectorAll(`a[href*="app/"]`);
135
links.forEach((link) => {
136
link.addEventListener('click', handleLinkClick);
137
});
0 commit comments