8000 fix(b-table, b-table-lite): render header when not always stacked mod… · shashankgaurav17/bootstrap-vue@2302b31 · GitHub
[go: up one dir, main page]

Skip to content

Commit 2302b31

Browse files
tmorehousejacobmllr95
authored andcommitted
fix(b-table, b-table-lite): render header when not always stacked mode (fixes bootstrap-vue#3886) (bootstrap-vue#3887)
Fixes bootstrap-vue#3886
1 parent 4046a53 commit 2302b31

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/table/helpers/mixin-stacked.js

Lines changed: 1 addition & 1 deletion
52D7
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export default {
1010
computed: {
1111
isStacked() {
1212
// `true` when always stacked, or breakpoint specified
13-
return this.stacked === '' ? true : Boolean(this.stacked)
13+
return this.stacked === '' ? true : this.stacked
1414
},
1515
isStackedAlways() {
1616
return this.stacked === true || this.stacked === ''

0 commit comments

Comments
 (0)
0