Skip to content

Commit

Permalink
fix(RadioGroup): allow boolean in modelValue prop (#1913)
Browse files Browse the repository at this point in the history
Co-authored-by: Adrien Figueiredo <>
  • Loading branch information
Trobyss authored Jul 1, 2024
1 parent 3e9c96b commit 8eca5a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/runtime/components/forms/RadioGroup.vue
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export default defineComponent({
inheritAttrs: false,
props: {
modelValue: {
type: [String, Number, Object],
type: [String, Number, Object, Boolean],
default: ''
},
name: {
Expand Down

0 comments on commit 8eca5a0

Please sign in to comment.