Skip to content

Commit 0639588

Browse files
authored
fix(radio/check group): remove redundant size class from the group container (Closes bootstrap-vue#2743) (bootstrap-vue#2761)
1 parent d10f804 commit 0639588

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

src/mixins/form-radio-check-group.js

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -52,11 +52,7 @@ export default {
5252
this.validated ? `was-validated` : ''
5353
]
5454
}
55-
return [
56-
// Is this needed since children will pick up on size?
57-
this.sizeFormClass,
58-
this.validated ? `was-validated` : ''
59-
]
55+
return [this.validated ? `was-validated` : '']
6056
},
6157
computedAriaInvalid() {
6258
const ariaInvalid = this.ariaInvalid

0 commit comments

Comments
 (0)