We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3f009fd commit 74d4759Copy full SHA for 74d4759
src/components/table/helpers/mixin-stacked.js
@@ -9,11 +9,11 @@ export default {
9
},
10
computed: {
11
isStacked() {
12
- // `true` when always stacked, or breakpoint specified
13
- return this.stacked === '' ? true : Boolean(this.stacked)
+ // `true` when always stacked, or returns the breakpoint specified
+ return this.stacked === '' ? true : this.stacked
14
15
isStackedAlways() {
16
- return this.stacked === true || this.stacked === ''
+ return this.isStacked === true
17
18
stackedTableClasses() {
19
return {
0 commit comments