Skip to content

Commit

Permalink
add symbols and punctuation
Browse files Browse the repository at this point in the history
  • Loading branch information
BrianHung authored Jun 4, 2024
1 parent d4b8e2b commit 656b272
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/core/src/data-editor/data-editor.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3342,7 +3342,7 @@ const DataEditorImpl: React.ForwardRefRenderFunction<DataEditorRef, DataEditorPr
!event.ctrlKey &&
gridSelection.current !== undefined &&
event.key.length === 1 &&
/[\p{L}\p{M}\p{N}]/ug.test(event.key) &&
/[\p{L}\p{M}\p{N}\p{S}\p{P}]/gu.test(event.key) &&
event.bounds !== undefined &&
isReadWriteCell(getCellContent([col - rowMarkerOffset, Math.max(0, Math.min(row, rows - 1))]))
) {
Expand Down

0 comments on commit 656b272

Please sign in to comment.