Skip to content

Commit

Permalink
Merge pull request #7055 from abpframework/issue/6709
Browse files Browse the repository at this point in the history
fix: Clear filter doesn't work on Docs
  • Loading branch information
ebicoglu authored Jan 6, 2021
2 parents 94dce9a + 751658f commit 48ce93c
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,11 @@
});
};

$('#filter').keyup(function (e) {
$('#filter').on('input', (e) => {
filterDocumentItems(e.target.value);
})

$('#filter').keyup(function (e) {
if (e.key === 'Enter') {
gotoFilteredDocumentIfThereIsOnlyOne();
}
Expand Down

0 comments on commit 48ce93c

Please sign in to comment.