Skip to content

Commit 6ba2202

Browse files
committed
chore(QSeparator): small tweaks
1 parent e894565 commit 6ba2202

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ui/src/components/separator/QSeparator.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,10 @@ export default Vue.extend({
3030

3131
classes () {
3232
return 'q-separator' + this.insetClass +
33-
` q-separator--${this.vertical ? 'vertical self-stretch' : 'horizontal col-grow'}` +
33+
` q-separator--${this.vertical === true ? 'vertical self-stretch' : 'horizontal col-grow'}` +
3434
(this.color !== void 0 ? ` bg-${this.color}` : '') +
3535
(this.isDark === true ? ' q-separator--dark' : '') +
36-
(this.spaced === true ? ' q-separator--spaced': '')
36+
(this.spaced === true ? ' q-separator--spaced' : '')
3737
}
3838
},
3939

0 commit comments

Comments
 (0)