diff --git a/packages/ui/src/components/JobCard/Timeline/Timeline.tsx b/packages/ui/src/components/JobCard/Timeline/Timeline.tsx index 2320c87ba..d8bd43b19 100644 --- a/packages/ui/src/components/JobCard/Timeline/Timeline.tsx +++ b/packages/ui/src/components/JobCard/Timeline/Timeline.tsx @@ -67,7 +67,8 @@ export const Timeline = function Timeline({ job, status }: { job: AppJob; status {!!job.delay && job.delay > 0 && status === STATUSES.delayed && (
  • {t('JOB.WILL_RUN_AT')} - + + {job.delay !== job.opts.delay && {t('JOB.DELAY_CHANGED')} }
  • )} {!!job.processedOn && ( diff --git a/packages/ui/src/static/locales/en-US/messages.json b/packages/ui/src/static/locales/en-US/messages.json index bb085e0ad..cb6e4fd4e 100644 --- a/packages/ui/src/static/locales/en-US/messages.json +++ b/packages/ui/src/static/locales/en-US/messages.json @@ -10,6 +10,7 @@ "JOBS_COUNT": "{{count}} Jobs" }, "JOB": { + "DELAY_CHANGED": "*Delay changed; the new run time is currently unknown", "NOT_FOUND": "Job Not found", "STATUS": "Status: {{status}}", "ADDED_AT": "Added at",