This commit is contained in:
RochesterX
2025-11-26 23:56:47 -05:00
parent 24abf00162
commit f697d4afea

View File

@@ -20,7 +20,7 @@ document.querySelectorAll("input[type='checkbox']").forEach(checkbox => {
});
document.querySelectorAll("input[type='text']").forEach(checkbox => {
checkbox.addEventListener("change", e => {
checkbox.addEventListener("input", e => {
e.preventDefault();
updateSearch();
});