We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0c0fa03 commit ebb6187Copy full SHA for ebb6187
1 file changed
packages/grid/src/key-handlers/PasteKeyHandler.ts
@@ -125,7 +125,7 @@ class PasteKeyHandler extends KeyHandler {
125
let plainText = '';
126
127
// Capture text/plain from the clipboard during the paste event.
128
- // This is used as a fallback if HTML parsing fails, for cases like pasting from Excel
+ // HTML element parsing is used as a fallback if text/plain is unavailable.
129
const pasteListener = (e: Event): void => {
130
const clipboardEvent = e as ClipboardEvent;
131
plainText =
0 commit comments