diff --git a/packages/ui/src/components/JobCard/JobActions/JobActions.tsx b/packages/ui/src/components/JobCard/JobActions/JobActions.tsx index 0e7b12a2..e41988c1 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.paused]: [buttonTypes.duplicate, buttonTypes.updateData, buttonTypes.clean], } as const; export const JobActions = ({ actions, status, allowRetries }: JobActionsProps) => {