Adjust debounce to 50ms
This commit is contained in:
parent
dca8139ef3
commit
2167b66f0d
1 changed files with 1 additions and 1 deletions
|
|
@ -62,7 +62,7 @@ searchInput?.addEventListener("input", (event) => {
|
|||
const text = item.textContent.toLowerCase();
|
||||
item.style.display = text.includes(query) ? "" : "none";
|
||||
});
|
||||
}, 150);
|
||||
}, 50);
|
||||
});
|
||||
|
||||
// OCR/formatting errors from epub conversion
|
||||
|
|
|
|||
Loading…
Reference in a new issue