fix transition when resetting to indeterminate state

This commit is contained in:
Henry Jameson 2023-05-24 11:44:26 +03:00
parent d223683b2e
commit ed34b07b3f

View File

@ -45,7 +45,9 @@ export default {
}, },
methods: { methods: {
onTransitionEnd (e) { onTransitionEnd (e) {
this.indeterminateTransitionFix = false if (!this.indeterminate) {
this.indeterminateTransitionFix = false
}
} }
} }
} }