We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ad2ea73 commit 2d25117Copy full SHA for 2d25117
website/src/queries-logic.js
@@ -306,7 +306,8 @@ function update_table(data) {
306
function updateFilterFunction() {
307
const filter = getFilterOrDefault();
308
if (filter === '') {
309
- return; // no filter
+ IS_USEFUL_FORK = () => true; // no filter
310
+ return;
311
}
312
313
const mapTable = {
@@ -551,7 +552,4 @@ if (JQ_REPO_FIELD.val()) {
551
552
JQ_SEARCH_BTN.click();
553
554
-JQ_FILTER_FIELD.keyup(event => {
555
- // User updated the filter field, so we need to re-filter the table.
556
- update_filter();
557
-});
+JQ_FILTER_FIELD.on('input', update_filter);
0 commit comments