diff --git a/apps/cron/20260201-000000/index.tsx b/apps/cron/20260201-000000/index.tsx index 6acdad3..954ba5a 100644 --- a/apps/cron/20260201-000000/index.tsx +++ b/apps/cron/20260201-000000/index.tsx @@ -439,17 +439,15 @@ app.get('/job/:app/:name', async c => { ← Back -
- - {job.app}/{job.name} - {statusLabel(job)} -
+ + {job.app}/{job.name}
{job.state === 'running' ? 'Running...' : 'Run Now'}
+ {statusLabel(job)} Schedule {job.schedule} Last run {job.state === 'running' ? 'now' : formatRelative(job.lastRun)} @@ -465,18 +463,19 @@ app.get('/job/:app/:name', async c => { {job.lastOutput ? ( Output - {job.lastOutput} + {job.lastOutput} ) : job.state === 'running' ? ( Output - Waiting for output... + Waiting for output... ) : job.lastRun && !job.lastError ? ( No output ) : null} +