Closed
Description
Hello,
We can't set breakpoint empty in b-form-group
props, for something like col-6
. If we set breakpoint=""
it will output col--6
but it should be col-6
.
//src/components/form-group/form-group.js
//lines 237-246
labelLayoutClasses () {
return [
this.horizontal ? `col-${this.breakpoint}-${this.labelCols}` : null
]
},
inputLayoutClasses () {
return [
this.horizontal ? `col-${this.breakpoint}-${12 - Number(this.labelCols)}` : null
]
},