diff --git a/apps/webapp/app/components/code/TSQLResultsTable.tsx b/apps/webapp/app/components/code/TSQLResultsTable.tsx index 3442f729e..e71c9e5f9 100644 --- a/apps/webapp/app/components/code/TSQLResultsTable.tsx +++ b/apps/webapp/app/components/code/TSQLResultsTable.tsx @@ -17,6 +17,8 @@ import { TaskRunStatusCombo, } from "~/components/runs/v3/TaskRunStatus"; import { Paragraph } from "../primitives/Paragraph"; +import { TextLink } from "../primitives/TextLink"; +import { v3RunPathFromFriendlyId } from "~/utils/pathBuilder"; /** * Check if a ClickHouse type is a DateTime type @@ -83,6 +85,12 @@ function CellValue({ // First check customRenderType for special rendering if (column.customRenderType) { switch (column.customRenderType) { + case "runId": { + if (typeof value === "string") { + return {value}; + } + break; + } case "runStatus": { // We have mapped the status to a friendly status so we need to map back to render the normal component if (isTaskRunStatus(value)) { diff --git a/apps/webapp/app/routes/_app.orgs.$organizationSlug.projects.$projectParam.env.$envParam.query/route.tsx b/apps/webapp/app/routes/_app.orgs.$organizationSlug.projects.$projectParam.env.$envParam.query/route.tsx index 8cd01cd4d..afed660eb 100644 --- a/apps/webapp/app/routes/_app.orgs.$organizationSlug.projects.$projectParam.env.$envParam.query/route.tsx +++ b/apps/webapp/app/routes/_app.orgs.$organizationSlug.projects.$projectParam.env.$envParam.query/route.tsx @@ -202,7 +202,7 @@ export default function Page() { minHeight="200px" className="min-h-[200px]" /> -
+