diff --git a/skyvern-frontend/src/routes/workflows/workflowRun/BlockCard.tsx b/skyvern-frontend/src/routes/workflows/workflowRun/BlockCard.tsx index fc24664a..e98da892 100644 --- a/skyvern-frontend/src/routes/workflows/workflowRun/BlockCard.tsx +++ b/skyvern-frontend/src/routes/workflows/workflowRun/BlockCard.tsx @@ -1,10 +1,8 @@ -import { ExternalLinkIcon } from "@radix-ui/react-icons"; +import { CubeIcon } from "@radix-ui/react-icons"; import { WorkflowRunBlock } from "../types/workflowRunTypes"; import { cn } from "@/util/utils"; import { WorkflowBlockIcon } from "../editor/nodes/WorkflowBlockIcon"; import { workflowBlockTitle } from "../editor/nodes/types"; -import { Button } from "@/components/ui/button"; -import { Link } from "react-router-dom"; type Props = { active: boolean; @@ -23,7 +21,7 @@ function BlockCard({ block, onClick, active }: Props) { )} onClick={onClick} > -
+
{workflowBlockTitle[block.block_type]}
- {block.task_id && ( - - )} +
+ + Block +
); diff --git a/skyvern-frontend/src/routes/workflows/workflowRun/WorkflowRunTimelineItemInfoSection.tsx b/skyvern-frontend/src/routes/workflows/workflowRun/WorkflowRunTimelineItemInfoSection.tsx index 73f88401..86ef35b8 100644 --- a/skyvern-frontend/src/routes/workflows/workflowRun/WorkflowRunTimelineItemInfoSection.tsx +++ b/skyvern-frontend/src/routes/workflows/workflowRun/WorkflowRunTimelineItemInfoSection.tsx @@ -13,6 +13,8 @@ import { WorkflowBlockTypes } from "../types/workflowTypes"; import { statusIsAFailureType } from "@/routes/tasks/types"; import { SendEmailBlockInfo } from "./blockInfo/SendEmailBlockInfo"; import { WorkflowRunOverviewActiveElement } from "./WorkflowRunOverview"; +import { ExternalLinkIcon } from "@radix-ui/react-icons"; +import { Link } from "react-router-dom"; type Props = { activeItem: WorkflowRunOverviewActiveElement; @@ -84,6 +86,17 @@ function WorkflowRunTimelineItemInfoSection({ activeItem }: Props) { )} Navigation Goal Parameters + {item.task_id && ( + +
+ + Diagnostics +
+ + )} {item.status === Status.Completed && (