diff --git a/skyvern-frontend/src/routes/tasks/detail/ActionScreenshot.tsx b/skyvern-frontend/src/routes/tasks/detail/ActionScreenshot.tsx index dcdaa739..f35c1b84 100644 --- a/skyvern-frontend/src/routes/tasks/detail/ActionScreenshot.tsx +++ b/skyvern-frontend/src/routes/tasks/detail/ActionScreenshot.tsx @@ -44,7 +44,8 @@ function ActionScreenshot({ stepId, index, taskStatus }: Props) { (artifact) => artifact.artifact_type === ArtifactType.ActionScreenshot, ); - const screenshot = actionScreenshots?.[index]; + // action screenshots are reverse ordered w.r.t action order + const screenshot = actionScreenshots?.[actionScreenshots.length - index - 1]; if (isLoading) { return ( diff --git a/skyvern-frontend/src/routes/workflows/workflowRun/WorkflowRunTimelineItemInfoSection.tsx b/skyvern-frontend/src/routes/workflows/workflowRun/WorkflowRunTimelineItemInfoSection.tsx index 16056a25..73f88401 100644 --- a/skyvern-frontend/src/routes/workflows/workflowRun/WorkflowRunTimelineItemInfoSection.tsx +++ b/skyvern-frontend/src/routes/workflows/workflowRun/WorkflowRunTimelineItemInfoSection.tsx @@ -72,7 +72,7 @@ function WorkflowRunTimelineItemInfoSection({ activeItem }: Props) { ) { return (
- + {item.status === Status.Completed && (