Skip to content

Commit 565f450

Browse files
committed
Add QuotaBlocked task state
Signed-off-by: Radoslaw Szwajkowski <[email protected]>
1 parent ddb7680 commit 565f450

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

client/src/app/api/models.ts

+1
Original file line numberDiff line numberDiff line change
@@ -301,6 +301,7 @@ export type TaskState =
301301
| "Failed"
302302
| "Running"
303303
| "No task"
304+
| "QuotaBlocked"
304305
| "Ready"
305306
| "Pending"
306307
| "Postponed";

client/src/app/components/Icons/taskStateToIcon.tsx

+1
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ export const taskStateToIcon = (state?: TaskState) => {
2929
case "Pending":
3030
return <InProgressIcon />;
3131
case "Created":
32+
case "QuotaBlocked":
3233
case "Running":
3334
case "Ready":
3435
case "Postponed":

0 commit comments

Comments
 (0)