Skip to content

Commit 63f19dc

Browse files
authored
Merge pull request #1494 from fhlavac/check
2 parents 26119e0 + 733f960 commit 63f19dc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/pf4-component-mapper/src/checkbox/multiple-choice-list.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import MultipleChoiceListCommon, { wrapperProps } from '@data-driven-forms/commo
77
import FormGroup from '../form-group/form-group';
88

99
const FinalCheckbox = ({ option, ...props }) => (
10-
<Checkbox isChecked={props.checked} {...props} onChange={(_value, e) => props.onChange(e)} {...option} />
10+
<Checkbox isChecked={props.checked} {...props} onChange={(e, _value) => props.onChange(e)} {...option} />
1111
);
1212

1313
FinalCheckbox.propTypes = {

0 commit comments

Comments
 (0)