debugger block runs dez i (incremental improvements towards figma design(s)) (#3757)

This commit is contained in:
Jonathan Dobson
2025-10-17 17:00:55 -04:00
committed by GitHub
parent fb24641212
commit 20e0a25ede
3 changed files with 38 additions and 17 deletions

View File

@@ -4,7 +4,7 @@ import { cn } from "@/util/utils";
type Props = {
className?: string;
status: Status;
status: Status | "pending";
};
function StatusBadge({ className, status }: Props) {
@@ -24,7 +24,9 @@ function StatusBadge({ className, status }: Props) {
status === Status.Canceled ||
status === Status.TimedOut,
"bg-yellow-900 text-yellow-50 hover:bg-yellow-900/80":
status === Status.Running || status === Status.Queued,
status === Status.Running ||
status === Status.Queued ||
status === "pending",
})}
>
{statusText}