We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 112e345 commit d6c8ec4Copy full SHA for d6c8ec4
packages/overlay/src/vaadin-overlay-position-mixin.js
@@ -217,7 +217,7 @@ export const PositionMixin = (superClass) =>
217
/** @private */
218
__onScroll(e) {
219
// If the scroll event occurred inside the overlay, ignore it.
220
- if (e.target instanceof Node && this.contains(e.target)) {
+ if (e.target instanceof Node && this._deepContains(e.target)) {
221
return;
222
}
223
0 commit comments