Skip to content

Commit

Permalink
Add QuotaBlocked task state
Browse files Browse the repository at this point in the history
Signed-off-by: Radoslaw Szwajkowski <[email protected]>
  • Loading branch information
rszwajko committed Jun 19, 2024
1 parent 98ffb60 commit 3ed1dd4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions client/src/app/api/models.ts
Original file line number Diff line number Diff line change
Expand Up @@ -301,6 +301,7 @@ export type TaskState =
| "Failed"
| "Running"
| "No task"
| "QuotaBlocked"
| "Ready"
| "Pending"
| "Postponed";
Expand Down
1 change: 1 addition & 0 deletions client/src/app/components/Icons/taskStateToIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ export const taskStateToIcon = (state?: TaskState) => {
case "Pending":
return <InProgressIcon />;
case "Created":
case "QuotaBlocked":
case "Running":
case "Ready":
case "Postponed":
Expand Down

0 comments on commit 3ed1dd4

Please sign in to comment.