Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Resolve tab navigation issue in Firefox #4562

Merged
merged 7 commits into from
Nov 8, 2024
2 changes: 1 addition & 1 deletion src/components/ColorPicker/ColorPicker.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export const ColorPicker = (props: ColorPickerProps) => {
}

return (
<ReactFocusLock autoFocus={false} className="fix-focus-lock-placement">
<ReactFocusLock autoFocus className="fix-focus-lock-placement">
<ul className="color-picker">
<li className={`${getColorClassName(props.activeColor)} color-picker__item`}>
<button
Expand Down
2 changes: 1 addition & 1 deletion src/components/MiniMenu/MiniMenu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ type MiniMenuProps = {
};

export const MiniMenu = ({className, items}: MiniMenuProps) => (
<ReactFocusLock autoFocus={false}>
<ReactFocusLock autoFocus>
<div className={classNames(className, "mini-menu")}>
{items.map((item) => {
const anchor = uniqueId(`mini-menu-${item.label}`);
Expand Down
Loading