(value)
| 13206 | const repair = document.getElementById('pwn-health-repair'); |
| 13207 | const showRepair = anyMissing && !status.installing; |
| 13208 | if (repair) { |
| 13209 | repair.classList.toggle('hidden', !showRepair); |
| 13210 | } |
| 13211 | |
| 13212 | const repairMsg = document.getElementById('pwn-health-repair-msg'); |
| 13213 | if (showRepair && repairMsg) { |
| 13214 | const missing = missingCritical.concat(missingOptional); |
nothing calls this directly
no test coverage detected