From e9fc547a72daa4fcff1c2daeebfd9e035c10ebd7 Mon Sep 17 00:00:00 2001 From: Oliver Giles Date: Sat, 3 Sep 2022 19:54:08 +1200 Subject: [PATCH] wallboard: correctly tag running build for css also on page refresh, not just via SSE. --- src/resources/js/app.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/resources/js/app.js b/src/resources/js/app.js index 2022209..6ef9521 100644 --- a/src/resources/js/app.js +++ b/src/resources/js/app.js @@ -482,6 +482,7 @@ const All = templateId => { state.jobsRunning = msg.running; // mix running and completed jobs msg.running.forEach(job => { + job.result = 'running'; const idx = state.jobs.findIndex(j => j.name === job.name); if (idx > -1) state.jobs[idx] = job;