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: dropdown menu immediately closes on Android Firefox mobile #2567

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

tvankith
Copy link

@tvankith tvankith commented Dec 5, 2023

Description

Fix #2565

onFocusCapture is triggered while clicking on dropdown trigger.This prevented by stopping propogation of focus event from DropdownMenuTrigger component

Comment on lines +127 to +129
onFocusCapture={(event)=>{
event.stopPropagation();
}}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We want to treat this like any other event handle and compose it with the consumer's onFocusCapture prop

Suggested change
onFocusCapture={(event)=>{
event.stopPropagation();
}}
onFocusCapture={composeEventHandlers(props.onFocusCapture, (event)=>{
event.stopPropagation();
})}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Dropdown menu immediately closes on Android Firefox mobile
2 participants