File tree 1 file changed +4
-2
lines changed
src/components/form-checkbox
1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -12,9 +12,9 @@ export default {
12
12
return h (
13
13
'b-form-checkbox' ,
14
14
{
15
- key : `radio_ ${ idx } _opt` ,
15
+ key : `check_ ${ idx } _opt` ,
16
16
props : {
17
- id : t . safeId ( `_BV_radio_ ${ idx } _opt_` ) ,
17
+ id : t . safeId ( `_BV_check_ ${ idx } _opt_` ) ,
18
18
name : t . name ,
19
19
value : option . value ,
20
20
required : t . name && t . required ,
@@ -32,6 +32,7 @@ export default {
32
32
id : t . safeId ( ) ,
33
33
role : 'group' ,
34
34
tabindex : '-1' ,
35
+ // `data-toggle="buttons" will not be needed in BS V4.beta.3
35
36
'data-toggle' : t . buttons ? 'buttons' : null , // Needed for styling only!
36
37
'aria-required' : t . required ? 'true' : null ,
37
38
'aria-invalid' : t . computedAriaInvalid
@@ -92,6 +93,7 @@ export default {
92
93
const t = this
93
94
if ( t . buttons ) {
94
95
return [
96
+ 'btn-group-toggle' ,
95
97
t . stacked ? 'btn-group-vertical' : 'btn-group' ,
96
98
t . size ? `btn-group-${ this . size } ` : '' ,
97
99
t . validated ? `was-validated` : ''
You can’t perform that action at this time.
0 commit comments