diff --git a/src/components/Dropdown/Dropdown.tsx b/src/components/Dropdown/Dropdown.tsx index 03f8b8faa..91373d370 100644 --- a/src/components/Dropdown/Dropdown.tsx +++ b/src/components/Dropdown/Dropdown.tsx @@ -307,7 +307,7 @@ export const Dropdown: FC = React.memo( if (event?.key === eventKeys.TAB && event.shiftKey) { timeout && clearTimeout(timeout); timeout = setTimeout(() => { - if (refs.floating.current.matches(':focus-within')) { + if (!refs.floating.current.matches(':focus-within')) { toggle(toggleDropdownOnShiftTab)(event); } }, NO_ANIMATION_DURATION);