We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e894565 commit 6ba2202Copy full SHA for 6ba2202
ui/src/components/separator/QSeparator.js
@@ -30,10 +30,10 @@ export default Vue.extend({
30
31
classes () {
32
return 'q-separator' + this.insetClass +
33
- ` q-separator--${this.vertical ? 'vertical self-stretch' : 'horizontal col-grow'}` +
+ ` q-separator--${this.vertical === true ? 'vertical self-stretch' : 'horizontal col-grow'}` +
34
(this.color !== void 0 ? ` bg-${this.color}` : '') +
35
(this.isDark === true ? ' q-separator--dark' : '') +
36
- (this.spaced === true ? ' q-separator--spaced': '')
+ (this.spaced === true ? ' q-separator--spaced' : '')
37
}
38
},
39
0 commit comments