From 12ee2bf9b0fd027e6b2e70ccdd35cb10120baa1e Mon Sep 17 00:00:00 2001 From: Jonathan Dobson Date: Fri, 1 Aug 2025 14:33:54 -0400 Subject: [PATCH] fix badge alignment (#3088) --- skyvern-frontend/src/components/StatusBadge.tsx | 5 +++-- skyvern-frontend/src/routes/workflows/WorkflowRun.tsx | 7 +++++-- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/skyvern-frontend/src/components/StatusBadge.tsx b/skyvern-frontend/src/components/StatusBadge.tsx index 59ad1982..8d284487 100644 --- a/skyvern-frontend/src/components/StatusBadge.tsx +++ b/skyvern-frontend/src/components/StatusBadge.tsx @@ -3,15 +3,16 @@ import { Badge } from "./ui/badge"; import { cn } from "@/util/utils"; type Props = { + className?: string; status: Status; }; -function StatusBadge({ status }: Props) { +function StatusBadge({ className, status }: Props) { const statusText = status === "timed_out" ? "timed out" : status; return (
-
+
{title} {workflowRunIsLoading ? ( ) : workflowRun ? ( - + ) : null}

{workflowRunId}