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 363661f commit c70c97dCopy full SHA for c70c97d
packages/vuetify/src/components/VOverlay/VOverlay.tsx
@@ -197,7 +197,7 @@ export const VOverlay = genericComponent<OverlaySlots>()({
197
}
198
199
function closeConditional (e: Event) {
200
- return isActive.value && globalTop.value && (
+ return isActive.value && (
201
// If using scrim, only close if clicking on it rather than anything opened on top
202
!props.scrim || e.target === scrimEl.value || (e instanceof MouseEvent && e.shadowTarget === scrimEl.value)
203
)
0 commit comments