From c9986277ab9e0012c3a2542733170296deabf4d7 Mon Sep 17 00:00:00 2001 From: Chris Wanstrath <2+defunkt@users.noreply.github.com> Date: Tue, 10 Feb 2026 11:01:32 -0800 Subject: [PATCH] scroll logs to bottom --- apps/cron/20260201-000000/index.tsx | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) 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} +