Skip to content

Commit 6845014

Browse files
authored
fix(form-check+radio mixin): pull state from parent group
1 parent 710369c commit 6845014

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/mixins/form-radio-check.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ export default {
7070
return true;
7171
} else if (this.state === 'invalid') {
7272
return false;
73-
} else if (this.is_Childp && typeof this.$parent.get_State === 'boolean') {
73+
} else if (this.is_Child && typeof this.$parent.get_State === 'boolean') {
7474
return this.$parent.get_State;
7575
}
7676
return null;

0 commit comments

Comments
 (0)