From 69c5ff7989d37b47b715c9efd4d3e2daabd854c7 Mon Sep 17 00:00:00 2001 From: OpenClaw Bot Date: Sat, 21 Mar 2026 15:24:49 +0100 Subject: [PATCH] fix(diarization-ui): repair jobs-page JS quoting so live elapsed counter updates --- app.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app.py b/app.py index 573158d..622adfd 100644 --- a/app.py +++ b/app.py @@ -863,8 +863,8 @@ async function renderJobs() {{ for(const it of j.items) {{ const d = document.createElement('div'); d.className='card'; const actions = []; - if(!['done','error','cancelled'].includes(it.status)) actions.push(""); - actions.push("🗑️"); + if(!['done','error','cancelled'].includes(it.status)) actions.push(""); + actions.push("🗑️"); const result = it.result_document_id ? ("Ergebnis öffnen") : ''; const err = it.error ? ("
"+String(it.error).replaceAll('<','<')+"
") : ''; const startTs = (it.started_at || it.created_at || '');