From a4e41f415614c14030e09f79281a8f47c68efc8a Mon Sep 17 00:00:00 2001 From: Jamie Banks Date: Fri, 5 Jun 2026 20:24:22 +0100 Subject: [PATCH] style: add flexbox layout for job action buttons in dashboard template --- web/templates/dashboard.html | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/web/templates/dashboard.html b/web/templates/dashboard.html index afaa0d7..dffd923 100644 --- a/web/templates/dashboard.html +++ b/web/templates/dashboard.html @@ -61,12 +61,16 @@ let actions = ''; if (job.status === 'pending') { actions = ` - - +
+ + +
`; } else if (job.status === 'processing') { actions = ` - +
+ +
`; } else if (job.status === 'failed') { // Retry not fully implemented in API yet, but could re-enqueue