()
| 381 | } |
| 382 | |
| 383 | function collectCheckedPreviewKeys() { |
| 384 | const nodes = Array.from(document.querySelectorAll('.repair-center-key:checked')); |
| 385 | return nodes.map((node) => String(node?.dataset?.repairKey || '').trim()).filter(Boolean); |
| 386 | } |
| 387 | |
| 388 | async function loadRepairRollbacks() { |
| 389 | try { |
no test coverage detected