chore: display options menu keyboard nav

This commit is contained in:
Aman Harwara
2023-04-29 00:10:13 +05:30
parent 0ab9006c52
commit e1a47ea884
6 changed files with 28 additions and 16 deletions

View File

@@ -57,8 +57,9 @@ export const useListKeyboardNavigation = (
const keyDownHandler = useCallback(
(e: KeyboardEvent) => {
const isFocusInInput = document.activeElement?.tagName === 'INPUT'
const isFocusInListbox = !!document.activeElement?.closest('[role="listbox"]')
if (isFocusInInput) {
if (isFocusInInput || isFocusInListbox) {
return
}