Fix meta-pipeline detail panel collapsing on auto-refresh
Auto-refresh now skips when any detail panel is open (checks for meta-detail-* elements). Panel stays stable while reading results. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
c9901dbc94
commit
dfab02f114
@ -4136,7 +4136,7 @@ async function viewMetaPipeline(pid) {
|
||||
|
||||
renderMetaPresets();
|
||||
loadMetaPipelines();
|
||||
setInterval(function(){if(document.getElementById('meta-pipelines'))loadMetaPipelines()},5000);
|
||||
setInterval(function(){if(document.getElementById('meta-pipelines') && !document.querySelector('[id^="meta-detail-"]'))loadMetaPipelines()},5000);
|
||||
|
||||
renderSelfReports();
|
||||
loadPastReports();
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user