Skip to content
This repository has been archived by the owner on Aug 15, 2024. It is now read-only.

Commit

Permalink
missing .focus()
Browse files Browse the repository at this point in the history
  • Loading branch information
clmedders committed Feb 20, 2024
1 parent 633e870 commit bec7ff3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion assets/scripts/state-selector.js
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@
stateInput.addEventListener('focus', stateListShow);
stateInput.addEventListener('keydown', (e) => {
if (e.key === "ArrowDown") {
stateListResults[0].focus();
stateListResults[0].activate();
}
});
stateInput.addEventListener('keyup', (e) => {
Expand Down

0 comments on commit bec7ff3

Please sign in to comment.