(tok)
| 307 | if (tb) tb.hidden = true; |
| 308 | if (clearBtn) clearBtn.hidden = true; |
| 309 | if (panel) panel.classList.remove("visible"); |
| 310 | } |
| 311 | |
| 312 | // Function to update the filter indicator with active filters |
| 313 | function updateFilterIndicator(count) { |
| 314 | const filterIndicator = document.getElementById("current-filter"); |
| 315 | const filterBody = document.getElementById("current-filter-body"); |
| 316 | if (!filterIndicator || !filterBody) return; |
| 317 | |
| 318 | // Get active filter values |
no outgoing calls
no test coverage detected