Skip to content

Commit

Permalink
Merge pull request #1494 from fhlavac/check
Browse files Browse the repository at this point in the history
  • Loading branch information
rvsia authored Nov 25, 2024
2 parents 26119e0 + 733f960 commit 63f19dc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import MultipleChoiceListCommon, { wrapperProps } from '@data-driven-forms/commo
import FormGroup from '../form-group/form-group';

const FinalCheckbox = ({ option, ...props }) => (
<Checkbox isChecked={props.checked} {...props} onChange={(_value, e) => props.onChange(e)} {...option} />
<Checkbox isChecked={props.checked} {...props} onChange={(e, _value) => props.onChange(e)} {...option} />
);

FinalCheckbox.propTypes = {
Expand Down

0 comments on commit 63f19dc

Please sign in to comment.