fix(ui): no group auto-expand while checking; only on actual error

This commit is contained in:
Administrator 2026-06-07 04:40:52 +02:00
parent 89d29c7a2a
commit ce0bbb8b7e

View File

@ -3170,7 +3170,7 @@ function _hosterGroupOpenState(name, summary) {
}
return prev.state === 'open';
}
return summary.error > 0 || summary.checking > 0 || summary.unchecked > 0;
return summary.error > 0;
}
const _hosterGroupOpenMemory = new Map();