File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
src/dashboard/Data/Browser Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -426,12 +426,12 @@ export default class DataBrowser extends React.Component {
426
426
return ;
427
427
}
428
428
429
- // Check if the event target is an input or textarea
429
+ // Check if the event target is an input, textarea, or select element
430
430
const target = e . target ;
431
- const isInputElement = target && ( target . tagName === 'INPUT' || target . tagName === 'TEXTAREA' ) ;
431
+ const isInputElement = target && ( target . tagName === 'INPUT' || target . tagName === 'TEXTAREA' || target . tagName === 'SELECT' ) ;
432
432
433
- // Ignore all keyboard events when focus is on input/textarea elements
434
- // This allows normal text editing behavior in filter inputs
433
+ // Ignore all keyboard events when focus is on input/textarea/select elements
434
+ // This allows normal text editing behavior in filter inputs and dropdown navigation
435
435
if ( isInputElement ) {
436
436
return ;
437
437
}
You can’t perform that action at this time.
0 commit comments