diff --git a/src/components/combo_box/combo_box.tsx b/src/components/combo_box/combo_box.tsx index ffc5678c75f..acd7ec2d70c 100644 --- a/src/components/combo_box/combo_box.tsx +++ b/src/components/combo_box/combo_box.tsx @@ -481,6 +481,7 @@ export class EuiComboBox extends Component< onKeyDown: KeyboardEventHandler = (event) => { if (this.props.isDisabled) return; + event.persist(); // TODO: Remove once React 16 support is dropped switch (event.key) { case keys.ARROW_UP: event.preventDefault();