fix: do not dispatch backdrop click when mousedown is in details#10711
fix: do not dispatch backdrop click when mousedown is in details#10711web-padawan merged 1 commit intomainfrom
Conversation
|
|
Hi @sissbruecker and @web-padawan, when i performed cherry-pick to this commit to 24.9, i have encountered the following issue. Can you take a look and pick it manually? |
) (#10712) Co-authored-by: Sascha Ißbrücker <sissbruecker@vaadin.com>
|
This ticket/PR has been released with Vaadin 25.1.0-alpha1. |



Description
#9665 introduced a regression where
mousedownon the details content andmouseupon the internal details wrapper can result in aclickand thus abackdrop-clickevent. This is because the internal details wrapper is a common ancestor for bothmousedownandmouseup.This change removes pointer events on the details wrapper and restores them on the details content, which allows clicking the actual backdrop.
Fixes #10702
Type of change