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 || '');