MCPcopy Create free account
hub / github.com/CodeClash-ai/CodeClash / updateClearFiltersButton

Function updateClearFiltersButton

codeclash/viewer/static/js/picker.js:1126–1135  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

1124}
1125
1126function updateClearFiltersButton() {
1127 const clearButton = document.getElementById("clear-filters");
1128 if (clearButton) {
1129 if (hasActiveFilters()) {
1130 clearButton.classList.add("show");
1131 } else {
1132 clearButton.classList.remove("show");
1133 }
1134 }
1135}
1136
1137function clearDateFilter(event) {
1138 if (event) {

Callers 5

initializeFiltersFunction · 0.85
applyFiltersFunction · 0.85
clearFiltersFunction · 0.85
updateModelFilterDisplayFunction · 0.85
updateDateFilterDisplayFunction · 0.85

Calls 1

hasActiveFiltersFunction · 0.85

Tested by

no test coverage detected