diff --git a/packages/ui/src/components/JobCard/JobActions/JobActions.tsx b/packages/ui/src/components/JobCard/JobActions/JobActions.tsx index e41988c1..d92d0f29 100644 --- a/packages/ui/src/components/JobCard/JobActions/JobActions.tsx +++ b/packages/ui/src/components/JobCard/JobActions/JobActions.tsx @@ -52,6 +52,7 @@ const statusToButtonsMap: Record = { ], [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;