Skip to content

Commit

Permalink
fix(radio/check group): remove redundant size class from the group co…
Browse files Browse the repository at this point in the history
…ntainer (Closes #2743) (#2761)
  • Loading branch information
tmorehouse authored Mar 4, 2019
1 parent d10f804 commit 0639588
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions src/mixins/form-radio-check-group.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,7 @@ export default {
this.validated ? `was-validated` : ''
]
}
return [
// Is this needed since children will pick up on size?
this.sizeFormClass,
this.validated ? `was-validated` : ''
]
return [this.validated ? `was-validated` : '']
},
computedAriaInvalid() {
const ariaInvalid = this.ariaInvalid
Expand Down

0 comments on commit 0639588

Please sign in to comment.