SeregPie/VueWordCloud

The circular progress never reaches 100%

tdoan2010 opened this issue · 1 comments

In your demo, the circular progress never reaches 100% (1 full round). When the process finished, the circular progress always stops at a random place.

I tried to fix it, but no success. Do you have any idea?

I also confirmed the issue in the demo at the moment.
In my environment, there seems to be a problem with the transition property of v-progress-circular in vuetify.
By applying the following css, it became the expected behavior.

.v-progress-circular__underlay, .v-progress-circular__overlay {
    transition: none !important;
}