We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 53a4d99 commit e3085b9Copy full SHA for e3085b9
src/dashboard/Data/Browser/DataBrowser.react.js
@@ -425,6 +425,17 @@ export default class DataBrowser extends React.Component {
425
if (this.props.disableKeyControls) {
426
return;
427
}
428
+
429
+ // Check if the event target is an input or textarea
430
+ const target = e.target;
431
+ const isInputElement = target && (target.tagName === 'INPUT' || target.tagName === 'TEXTAREA');
432
433
+ // Ignore all keyboard events when focus is on input/textarea elements
434
+ // This allows normal text editing behavior in filter inputs
435
+ if (isInputElement) {
436
+ return;
437
+ }
438
439
if (e.keyCode === 67 && (e.ctrlKey || e.metaKey)) {
440
// Check for text selection FIRST
441
const selection = window.getSelection();
0 commit comments