(text)
| 6975 | }); |
| 6976 | |
| 6977 | |
| 6978 | // Add scan directory button event listener |
| 6979 | document.getElementById('scan-directory-button')?.addEventListener('click', async () => { |
| 6980 | if (isScanning) return; // Prevent multiple scans |
| 6981 | |
| 6982 | // First, check if there are any active filters and clear them |
| 6983 | const clearFilterButton = document.querySelector('.clear-filter-button'); |
| 6984 | if (clearFilterButton) { |
no outgoing calls
no test coverage detected