From 8829ee5a56f3e6f6c3f787e18fd74cbe4fbf0e3e Mon Sep 17 00:00:00 2001 From: melloware Date: Wed, 20 Mar 2024 13:26:50 -0400 Subject: [PATCH] Fix #6192: InputNumber restore Copy and Paste functionality --- components/lib/inputnumber/InputNumber.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/lib/inputnumber/InputNumber.js b/components/lib/inputnumber/InputNumber.js index 8ea484a107..7d0898fe3b 100644 --- a/components/lib/inputnumber/InputNumber.js +++ b/components/lib/inputnumber/InputNumber.js @@ -322,7 +322,7 @@ export const InputNumber = React.memo( return; } - if (event.shiftKey || event.altKey) { + if (event.shiftKey || event.altKey || event.ctrlKey || event.metaKey) { isSpecialChar.current = true; return;