diff --git a/packages/views/autopilots/components/autopilot-detail-page.tsx b/packages/views/autopilots/components/autopilot-detail-page.tsx index ae2f30b33..7fc92f8e4 100644 --- a/packages/views/autopilots/components/autopilot-detail-page.tsx +++ b/packages/views/autopilots/components/autopilot-detail-page.tsx @@ -52,9 +52,9 @@ function formatDate(date: string): string { }); } -const RUN_STATUS_CONFIG: Record = { +const RUN_STATUS_CONFIG: Record = { issue_created: { label: "Issue Created", color: "text-blue-500", icon: Clock }, - running: { label: "Running", color: "text-blue-500", icon: Loader2 }, + running: { label: "Running", color: "text-blue-500", icon: Loader2, spin: true }, completed: { label: "Completed", color: "text-emerald-500", icon: CheckCircle2 }, failed: { label: "Failed", color: "text-destructive", icon: XCircle }, }; @@ -66,7 +66,7 @@ function RunRow({ run }: { run: AutopilotRun }) { const content = ( <> - + {cfg.label} {run.source}