(disabled = false, show = true)
| 1308 | } |
| 1309 | |
| 1310 | function setVendorRetryButtonState(disabled = false, show = true) { |
| 1311 | const btn = document.getElementById("vendor-retry-btn"); |
| 1312 | if (!btn) return; |
| 1313 | btn.style.display = show ? "" : "none"; |
| 1314 | btn.disabled = Boolean(disabled); |
| 1315 | } |
| 1316 | |
| 1317 | function showVendorProgressPanel(show = true) { |
| 1318 | const panel = document.getElementById("vendor-progress-panel"); |
no outgoing calls
no test coverage detected