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,9 +45,11 @@ export default {
}, },
methods: { methods: {
onTransitionEnd (e) { onTransitionEnd (e) {
if (!this.indeterminate) {
this.indeterminateTransitionFix = false this.indeterminateTransitionFix = false
} }
} }
}
} }
</script> </script>