@syncfusion/ej2-schedule 29.2.4 → 29.2.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2236,11 +2236,15 @@ class KeyboardInteraction {
2236
2236
  break;
2237
2237
  case 'cut':
2238
2238
  case 'cmdCut':
2239
- this.processClipboardAction(true, undefined, e);
2239
+ if (e.ctrlKey || e.metaKey) {
2240
+ this.processClipboardAction(true, undefined, e);
2241
+ }
2240
2242
  break;
2241
2243
  case 'copy':
2242
2244
  case 'cmdCopy':
2243
- this.processClipboardAction(false, undefined, e);
2245
+ if (e.ctrlKey || e.metaKey) {
2246
+ this.processClipboardAction(false, undefined, e);
2247
+ }
2244
2248
  break;
2245
2249
  }
2246
2250
  }