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 5b659d1 commit 39eb237Copy full SHA for 39eb237
src/components/form-radio/form-radio-group.js
@@ -32,6 +32,7 @@ export default {
32
id: t.safeId(),
33
role: 'radiogroup',
34
tabindex: '-1',
35
+ // `data-toggle="buttons"` can be removed when BSV4.beta.3 is released
36
'data-toggle': t.buttons ? 'buttons' : null, // Needed for styling only!
37
'aria-required': t.required ? 'true' : null,
38
'aria-invalid': t.computedAriaInvalid
@@ -92,6 +93,7 @@ export default {
92
93
groupClasses () {
94
if (this.buttons) {
95
return [
96
+ 'btn-group-toggle',
97
this.stacked ? 'btn-group-vertical' : 'btn-group',
98
this.size ? `btn-group-${this.size}` : '',
99
this.validated ? `was-validated` : ''
0 commit comments