Skip to content

Commit

Permalink
fix(JobActions): show actions for "waiting children" jobs just as for…
Browse files Browse the repository at this point in the history
… "waiting" ones (#855)
  • Loading branch information
jtomaszewski authored Nov 20, 2024
1 parent 610fcc2 commit 651e58d
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ const statusToButtonsMap: Record<string, ButtonType[]> = {
],
[STATUSES.completed]: [buttonTypes.duplicate, buttonTypes.retry, buttonTypes.clean],
[STATUSES.waiting]: [buttonTypes.duplicate, buttonTypes.updateData, buttonTypes.clean],
[STATUSES.waitingChildren]: [buttonTypes.duplicate, buttonTypes.updateData, buttonTypes.clean],
[STATUSES.paused]: [buttonTypes.duplicate, buttonTypes.updateData, buttonTypes.clean],
} as const;

Expand Down

0 comments on commit 651e58d

Please sign in to comment.