v1.0.50: fix showStages icon (dtFinish); fix api_operations (add tracked orphans); drop not_created filter

This commit is contained in:
2026-07-27 09:43:36 +04:00
parent 7f6284bb46
commit a271e863f3
5 changed files with 122 additions and 5 deletions
+2 -2
View File
@@ -263,8 +263,8 @@ function showStages(stages){
if(!stages||!stages.length) return;
let html='<div style="font-size:11px;font-weight:600;color:var(--muted);margin-top:4px;">Этапы</div>';
stages.forEach(s=>{
const ok=s.isSuccessful;
const icon=ok===true?'✅':ok===false?'❌':'⏳';
const done=!!s.dtFinish;
const icon=done?(s.isSuccessful?'✅':'❌'):'⏳';
html+=`<div style="font-size:11px;padding:2px 0;">${icon} ${s.stage}${(s.duration||0).toFixed(1)}s</div>`;
});
document.getElementById('stages-box').innerHTML=html;