Skip to content

Commit

Permalink
Merge pull request #330 from Deniz97/master
Browse files Browse the repository at this point in the history
fix: Also include other language characters to trigger cell focus
  • Loading branch information
nick-keller authored Jan 18, 2024
2 parents a205c5d + 2d8c961 commit 108d6c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/DataSheetGrid.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -1456,7 +1456,7 @@ export const DataSheetGrid = React.memo(
)
event.preventDefault()
} else if (
(event.key.match(/^[ -~]$/) || event.code.match(/Key[A-Z]$/)) &&
(event.key.match(/^[ -~]$/) || event.code.match(/Key[A-Z\p{L}]$/u)) &&
!event.ctrlKey &&
!event.metaKey &&
!event.altKey
Expand Down

0 comments on commit 108d6c2

Please sign in to comment.