diff --git a/packages/ui/src/components/JobCard/JobCard.tsx b/packages/ui/src/components/JobCard/JobCard.tsx
index 08943648..53ba7345 100644
--- a/packages/ui/src/components/JobCard/JobCard.tsx
+++ b/packages/ui/src/components/JobCard/JobCard.tsx
@@ -32,6 +32,12 @@ export const JobCard = ({ job, status, actions, readOnlyMode }: JobCardProps) =>
{job.name}
{job.attempts > 0 && attempt #{job.attempts + 1}}
+ {!!job.opts?.repeat?.count && (
+
+ repeat {job.opts?.repeat?.count}
+ {!!job.opts?.repeat?.limit && ` / ${job.opts?.repeat?.limit}`}
+
+ )}
{!readOnlyMode && }
diff --git a/packages/ui/src/components/JobCard/Timeline/Timeline.tsx b/packages/ui/src/components/JobCard/Timeline/Timeline.tsx
index 05a99def..3075486e 100644
--- a/packages/ui/src/components/JobCard/Timeline/Timeline.tsx
+++ b/packages/ui/src/components/JobCard/Timeline/Timeline.tsx
@@ -26,12 +26,8 @@ export const Timeline = function Timeline({ job, status }: { job: AppJob; status
{!!job.delay && job.delay > 0 && status === STATUSES.delayed && (
- Delayed for
-
+ Will run at
+
)}
{!!job.processedOn && (