eslint and build
Some checks failed
CI / Rustfmt (push) Successful in 22s
CI / Cargo Audit & Deny (push) Failing after 32s
CI / Web Blocking Checks (push) Successful in 47s
CI / Security Blocking Checks (push) Successful in 9s
CI / Clippy (push) Successful in 2m9s
CI / Web Advisory Checks (push) Successful in 37s
CI / Security Advisory Checks (push) Successful in 34s
CI / Tests (push) Failing after 8m37s

This commit is contained in:
2026-03-05 08:18:07 -06:00
parent 179180d604
commit c61fe26713
9 changed files with 51 additions and 27 deletions

View File

@@ -551,11 +551,11 @@ function ActionDetail({ actionRef }: { actionRef: string }) {
</span>
<span
className={`px-2 py-1 text-xs rounded ${
execution.status === "Completed"
execution.status === "completed"
? "bg-green-100 text-green-800"
: execution.status === "Failed"
: execution.status === "failed"
? "bg-red-100 text-red-800"
: execution.status === "Running"
: execution.status === "running"
? "bg-blue-100 text-blue-800"
: "bg-gray-100 text-gray-800"
}`}