File tree Expand file tree Collapse file tree 2 files changed +2
-0
lines changed Expand file tree Collapse file tree 2 files changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -95,6 +95,7 @@ export default {
95
95
checkboxProps . props . name = checkboxGroup . name ;
96
96
checkboxProps . props . checked = checkboxGroup . sValue . indexOf ( props . value ) !== - 1 ;
97
97
checkboxProps . props . disabled = props . disabled || checkboxGroup . disabled ;
98
+ checkboxProps . props . indeterminate = indeterminate ;
98
99
} else {
99
100
checkboxProps . on . change = this . handleChange ;
100
101
}
Original file line number Diff line number Diff line change @@ -99,6 +99,7 @@ export default {
99
99
prefixCls = { prefixCls }
100
100
key = { option . value . toString ( ) }
101
101
disabled = { 'disabled' in option ? option . disabled : props . disabled }
102
+ indeterminate = { option . indeterminate }
102
103
value = { option . value }
103
104
checked = { state . sValue . indexOf ( option . value ) !== - 1 }
104
105
onChange = { option . onChange || noop }
You can’t perform that action at this time.
0 commit comments