Vuetify: [Bug Report] VDialog VOverlay on background tab

Created on 20 Aug 2019  路  5Comments  路  Source: vuetifyjs/vuetify

Environment

Vuetify Version: 2.0.7
Last working version: 1.5.17
Vue Version: 2.6.10
Browsers: Chrome 76.0.3809.100
OS: Windows 10

Steps to reproduce

  1. Open codepen link in background tab.
  2. Wait a couple of seconds.
  3. Activate browser tab.
    VDialog closed, but VOverlay still present

Expected Behavior

kill VOverlay

Actual Behavior

VOverlay locks window

Reproduction Link

https://codepen.io/Buzzzzer/pen/YzKGLoO?editors=1010

VDialog bug

Most helpful comment

After 6 months of no fix, is this bug lost in the cracks or is there no trivial way to fix?

All 5 comments

Just wanted to note a current existing workaround:

Just skip using the dialog and use the v-overlay directly with a v-card, seems to work fine as compared to "persistent" dialog, and somewhat similar result, just no default animations as offered by the dialog

<v-overlay :value="hold" :opacity="0.3">
    <v-card
      color="blue darken-2"
      dark width="300">
      <v-card-text>
        Loading... Please wait.
        <v-progress-linear
          indeterminate
          color="white"
          class="mb-0"
        ></v-progress-linear>
      </v-card-text>
    </v-card>
  </v-overlay>

this might be a different alternative until the problem is solved.

After 6 months of no fix, is this bug lost in the cracks or is there no trivial way to fix?

Hello.. When can we expect a fix for this?

There was an existing PR that was abandonned and it wasn't until recently that a new PR was opened. We are always looking for passionate developers to help us with building the framework. If you have any questions, reach out to me in the community, https://community.vuetifyjs.com .

Thank you everyone for your patience.

Was this page helpful?
0 / 5 - 0 ratings

Related issues

sebastianmacias picture sebastianmacias  路  3Comments

smousa picture smousa  路  3Comments

dschreij picture dschreij  路  3Comments

gluons picture gluons  路  3Comments

alterhu2020 picture alterhu2020  路  3Comments