-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
Don't propagate click events from popover + remove unnecessary overflow hidden #23443
Conversation
Deploy preview for dagit-storybook ready! ✅ Preview Built with commit c953085. |
Deploy preview for dagit-core-storybook ready! ✅ Preview Built with commit c953085. |
What happens in this case when the event bubbles up? Is there some unexpected behavior?
Can you share a screenshot of what this looks like? I'm not sure I'm visualizing it correctly. |
flex={{alignItems: 'center', gap: 4}} | ||
style={{maxWidth: '600px', overflow: 'hidden', marginBottom: 4}} | ||
> | ||
<Box flex={{alignItems: 'center', gap: 4}} style={{maxWidth: '600px', marginBottom: 4}}> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Interesting - verified this wasn't from Dish's latest PR about the truncating breadcrumbs, so it seems fine to remove to me 👍
…ow hidden (#23443) ## Summary & Motivation 1. Don't propagate click events from the popover of ProductTour since by default blueprint's `Popover` seems to bubble them up to the element its wrapping (super weird!). 2. Remove overflow: hidden from the AssetPageHeader because this wraps a button that uses outerglow on hover and the overflow hidden ends up hiding the outerglow making it look weird. (cherry picked from commit f3ce9a8)
Summary & Motivation
Popover
seems to bubble them up to the element its wrapping (super weird!).