From c587a1e52981c2edea3ddea469593d3f64f97be0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pascal=20Pfl=C3=BCgner?= Date: Mon, 11 May 2026 08:41:43 +0200 Subject: [PATCH] fix: keep job overview live refresh active for running jobs Compare the nested job status value instead of the full status object so the refresher is only disabled once the job is no longer started. --- lufa/templates/basic_job.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lufa/templates/basic_job.html b/lufa/templates/basic_job.html index 3e8c6f7..200fd6f 100644 --- a/lufa/templates/basic_job.html +++ b/lufa/templates/basic_job.html @@ -49,7 +49,7 @@

Job {{ tower_job_id }} - {{ tower_job_template_name }}

).done(function (data) { jobState = data.state; writeJobStatus(jobState.state); - if (jobState != "started") { + if (jobState.state !== "started") { refresher.setEnabled(false); } });