-
Notifications
You must be signed in to change notification settings - Fork 85
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: ensure change event is fired on blur after prevented mousedown #6150
Conversation
Kudos, SonarCloud Quality Gate passed!
|
Co-authored-by: Sergey Vinogradov <[email protected]>
Hi @web-padawan , this commit cannot be picked to 23.3 by this bot, can you take a look and pick it manually? |
…6153) Co-authored-by: Serhii Kulykov <[email protected]>
…6152) Co-authored-by: Serhii Kulykov <[email protected]>
Description
Fixes vaadin/flow-components#4932
Currently, preventing
touchend
also causes thefocusout
to be prevented and that suppresseschange
event.This PR fixes that by storing a value at the moment of the last
change
event and dispatchingchange
manually.Type of change