diff --git a/ui/frontend/src/components/dashboard/Catalog/SearchTable.tsx b/ui/frontend/src/components/dashboard/Catalog/SearchTable.tsx
index 4ec3f5a2e..2a304b59f 100644
--- a/ui/frontend/src/components/dashboard/Catalog/SearchTable.tsx
+++ b/ui/frontend/src/components/dashboard/Catalog/SearchTable.tsx
@@ -242,7 +242,6 @@ const extractTableData = (
projectVersionName: "",
projectId: projectId,
codeArtifact: codeArtifactsById.get(node.code_artifacts?.[0]),
-
// runInfo: [],
};
});
diff --git a/ui/frontend/src/components/dashboard/NavBreadCrumb.tsx b/ui/frontend/src/components/dashboard/NavBreadCrumb.tsx
index d8aa38eb6..f7ba0d4fa 100644
--- a/ui/frontend/src/components/dashboard/NavBreadCrumb.tsx
+++ b/ui/frontend/src/components/dashboard/NavBreadCrumb.tsx
@@ -1,5 +1,6 @@
import { ChevronRightIcon, HomeIcon } from "@heroicons/react/20/solid";
import { DAGTemplateWithoutData, Project } from "../../state/api/friendlyApi";
+import { Link } from "react-router-dom";
export const NavBreadCrumb = (props: {
project: Project;
@@ -18,19 +19,27 @@ export const NavBreadCrumb = (props: {
: index == 3
? props.dagTemplates[0]?.name
: pathName;
+ let linkPath =
+ "/dashboard/" +
+ pathNameRelativeToDashboard.slice(0, index + 1).join("/");
+ if (linkPath.endsWith("/project")) {
+ linkPath = "/dashboard/projects";
+ } else if (linkPath.endsWith("/version")) {
+ linkPath = linkPath.replace("/version", "/versions");
+ }
return (
// TODO -- enable when we can get this working -- we just need to link for links that exist
// Should be easy I just don't have time now
-
{linkName}
-
+
);
}),
];
@@ -41,7 +50,10 @@ export const NavBreadCrumb = (props: {
const elements = getElements();
return (
-