Skip to content

Commit

Permalink
move event listener to keyup
Browse files Browse the repository at this point in the history
  • Loading branch information
SamuZad authored and mulbc committed Jan 26, 2023
1 parent 81bfaac commit 8764a3f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion popup.js
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ const searchHandler = function (e) {
}
};

searchInput.addEventListener('keypress', searchHandler);
searchInput.addEventListener('keyup', searchHandler);

function addCredentialsToList(credentials, credentialName, list) {
const item = document.createElement('li');
Expand Down

0 comments on commit 8764a3f

Please sign in to comment.