diff --git a/skyvern-frontend/src/routes/workflows/types/workflowRunTypes.ts b/skyvern-frontend/src/routes/workflows/types/workflowRunTypes.ts index 650955b9..2f610553 100644 --- a/skyvern-frontend/src/routes/workflows/types/workflowRunTypes.ts +++ b/skyvern-frontend/src/routes/workflows/types/workflowRunTypes.ts @@ -26,6 +26,7 @@ export type WorkflowRunBlock = { parent_workflow_run_block_id: string | null; block_type: WorkflowBlockType; label: string | null; + description: string | null; title: string | null; status: Status | null; failure_reason: string | null; diff --git a/skyvern-frontend/src/routes/workflows/workflowRun/WorkflowRunTimelineBlockItem.tsx b/skyvern-frontend/src/routes/workflows/workflowRun/WorkflowRunTimelineBlockItem.tsx index 07439ef7..7bfef4d0 100644 --- a/skyvern-frontend/src/routes/workflows/workflowRun/WorkflowRunTimelineBlockItem.tsx +++ b/skyvern-frontend/src/routes/workflows/workflowRun/WorkflowRunTimelineBlockItem.tsx @@ -78,30 +78,36 @@ function WorkflowRunTimelineBlockItem({ }} ref={refCallback} > -
-
- - {workflowBlockTitle[block.block_type]} -
-
- {showDiagnosticLink ? ( - -
- - Diagnostics -
- - ) : ( - <> - - Block - - )} +
+
+
+ + {workflowBlockTitle[block.block_type]} +
+
+ {showDiagnosticLink ? ( + +
+ + Diagnostics +
+ + ) : ( + <> + + Block + + )} +
+ {block.description ? ( +
{block.description}
+ ) : null}
+ {actions.map((action, index) => { return (