extend interactable coverage (#1170)

This commit is contained in:
LawyZheng
2024-11-12 00:25:43 +08:00
committed by GitHub
parent e0fa51e7be
commit 3b2a7dcffc

View File

@@ -484,6 +484,10 @@ function isInteractable(element) {
return true;
}
if (tagName === "span" && element.closest("div[id^='dropdown-container']")) {
return true;
}
if (
tagName === "div" ||
tagName === "img" ||