prevent scrolling when focused

renovate/tabler-icons-2.x
Chewbacca 2023-02-14 13:28:11 -05:00
rodzic d19f8a267a
commit f068d6280d
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -64,7 +64,7 @@ const DropdownMenuItem = ({ index, item, onClick }: IDropdownMenuItem) => {
const firstItem = index === 0;
if (itemRef.current && firstItem) {
itemRef.current.focus();
itemRef.current.focus({ preventScroll: true });
}
}, [itemRef.current, index]);