Skip to content

Commit ed4f4ef

Browse files
authored
fix(form-radio): Add missing classes in button mode (bootstrap-vue#779)
1 parent 1aaf915 commit ed4f4ef

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lib/components/form-radio.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,8 @@
8989
},
9090
btnGroupClasses() {
9191
return [
92-
this.size ? `button-group-${this.size}` : null,
92+
'btn-group',
93+
this.size ? `btn-group-${this.size}` : null,
9394
this.stacked ? 'btn-group-vertical' : ''
9495
];
9596
},

0 commit comments

Comments
 (0)