Skip to content

Commit

Permalink
fix: the disabled attribute should not be obtained from the parent co…
Browse files Browse the repository at this point in the history
…mponent formItem

Detailed description see: #365
  • Loading branch information
qiqingfu committed Nov 16, 2020
1 parent 81355d7 commit 03b0aa1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/checkbox-group/CheckboxGroup.vue
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export default {
})
const checkboxGroupDisabled = computed(() => {
return props.disabled || elFormItem.disabled || elForm.disabled
return props.disabled || elForm.disabled
})
on('update:modelValue', (v) => {
Expand Down

0 comments on commit 03b0aa1

Please sign in to comment.