Task cancelling frontend (#522)

This commit is contained in:
Kerem Yilmaz
2024-06-26 15:57:24 -07:00
committed by GitHub
parent bf81b7df53
commit 47c1a6f0e8
4 changed files with 98 additions and 9 deletions

View File

@@ -12,7 +12,8 @@ function StatusBadge({ status }: Props) {
} else if (
status === "failed" ||
status === "terminated" ||
status === "timed_out"
status === "timed_out" ||
status === "canceled"
) {
variant = "destructive";
} else if (status === "running") {