Skip to content
This repository has been archived by the owner on Apr 25, 2022. It is now read-only.

Commit

Permalink
Merge pull request #37 from superbrave/DV-1427
Browse files Browse the repository at this point in the history
[DV-1427] Added support for keycode 229 android keyboard
  • Loading branch information
RicardovdKruisweg authored Oct 18, 2021
2 parents 4873c5b + a677018 commit f1a98bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/elements/SearchBar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ export default {
if (
(keyCode >= 48 && keyCode <= 57) ||
(keyCode >= 65 && keyCode <= 91) ||
[8, 189].includes(keyCode)
[8, 189, 229].includes(keyCode)
) {
return true;
}
Expand Down

0 comments on commit f1a98bc

Please sign in to comment.