Skip to content

Commit bfefbe9

Browse files
committed
fix: LayoutDrawer mini mode: still animating when hidden quasarframework#2059
1 parent cf987a3 commit bfefbe9

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/components/layout/QLayoutDrawer.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,9 @@ export default {
132132
this.applyPosition()
133133
},
134134
mini () {
135-
this.layout.__animate()
135+
if (this.value) {
136+
this.layout.__animate()
137+
}
136138
}
137139
},
138140
computed: {

0 commit comments

Comments
 (0)