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 8a0f58f commit 102d6a4Copy full SHA for 102d6a4
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