Skip to content

Commit

Permalink
Allow to select emojis with tab key
Browse files Browse the repository at this point in the history
Signed-off-by: Jonas <jonas@freesources.org>
  • Loading branch information
mejo- committed Sep 6, 2022
1 parent 2aeeaa3 commit e014281
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/EmojiList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ export default {
return true
}

if (event.key === 'Enter') {
if (event.key === 'Enter' || event.key === 'Tab') {
this.selectItem(this.selectedIndex)
return true
}
Expand Down

0 comments on commit e014281

Please sign in to comment.