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 {
426426 return ;
427427 }
428428
429- // Check if the event target is an input or textarea
429+ // Check if the event target is an input, textarea, or select element
430430 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' ) ;
432432
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
435435 if ( isInputElement ) {
436436 return ;
437437 }
You can’t perform that action at this time.
0 commit comments