Skip to content

Commit

Permalink
fix(VDialog): don't remove overlay if dialog is still active
Browse files Browse the repository at this point in the history
fixes #13947
  • Loading branch information
KaelWD committed Jul 19, 2021
1 parent 15d7dae commit 4ca8391
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/vuetify/src/mixins/overlayable/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,8 @@ export default Vue.extend<Vue & Toggleable & Stackable & options>().extend({
!this.overlay ||
!this.overlay.$el ||
!this.overlay.$el.parentNode ||
this.overlay.value
this.overlay.value ||
this.isActive
) return

this.overlay.$el.parentNode.removeChild(this.overlay.$el)
Expand Down

0 comments on commit 4ca8391

Please sign in to comment.