fix: Clear filter doesn't work on Docs

resolves https://github.com/abpframework/abp/issues/6709
pull/7055/head
Yunus Emre Kalkan 5 years ago
parent 94dce9a925
commit 751658f18a

@ -71,9 +71,11 @@
}); });
}; };
$('#filter').keyup(function (e) { $('#filter').on('input', (e) => {
filterDocumentItems(e.target.value); filterDocumentItems(e.target.value);
})
$('#filter').keyup(function (e) {
if (e.key === 'Enter') { if (e.key === 'Enter') {
gotoFilteredDocumentIfThereIsOnlyOne(); gotoFilteredDocumentIfThereIsOnlyOne();
} }

Loading…
Cancel
Save