Skip to content

Commit

Permalink
Fix bug causing filter-min to break
Browse files Browse the repository at this point in the history
  • Loading branch information
ermanh committed Jul 25, 2021
1 parent 4b87572 commit 440ed46
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/helpers.js
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,7 @@ function resetSearch() {
["1", "2", "3"].forEach((i) => {
document.getElementById(`column-selection-${i}`).value = "(none)";
document.getElementById(`filter-control-${i}`).checked = false;
document.getElementById(`filter-min-${i}`).style.display = "none";
document.getElementById(`filter-min-span-${i}`).style.display = "none";
document.getElementById(`filter-min-${i}`).value = "2";
document.getElementById(`filter-row-${i}`).style.display = "none";
document.getElementById(`filter-selection-${i}`).innerHTML = "";
Expand Down

0 comments on commit 440ed46

Please sign in to comment.