Skip to content
Snippets Groups Projects
Commit dd4e1ba4 authored by KDSBrowne's avatar KDSBrowne
Browse files

fix keycode events

parent 3906448d
No related branches found
No related tags found
No related merge requests found
......@@ -126,8 +126,13 @@ export default class DropdownList extends Component {
return;
}
document.activeElement.firstChild.click();
onActionsHide();
if ([KEY_CODES.ENTER, KEY_CODES.ARROW_RIGHT].includes(event.keyCode)) {
event.stopPropagation();
document.activeElement.firstChild.click();
onActionsHide();
return;
}
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment