Skip to content

Commit

Permalink
"Pending" isn't a valid operation status (#1004)
Browse files Browse the repository at this point in the history
Make sure the displayed status for a `running` operation matches the actual API string, since the Activity filter uses "Running" now, too.
  • Loading branch information
UserNotFound authored Dec 13, 2024
1 parent 6483174 commit 96f276a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/deploy/operation/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -797,7 +797,7 @@ export const createReadableStatus = (status: OperationStatus): string => {
case "queued":
return "QUEUED";
case "running":
return "PENDING";
return "RUNNING";
case "succeeded":
return "DONE";
case "failed":
Expand Down

0 comments on commit 96f276a

Please sign in to comment.