Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

Commit

Permalink
fix(ui): ensure skip backup checkbox is clickable
Browse files Browse the repository at this point in the history
  • Loading branch information
mrfelton committed Mar 26, 2020
1 parent 9c6a39d commit f25cc02
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion renderer/components/Form/Checkbox.js
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ const WrappedCheckboxAsField = ({ fieldState, fieldApi, ...rest }) => {
setValue(!value)
}

return <Checkbox isChecked={value} onChange={onChange} {...rest} />
return <Checkbox {...rest} isChecked={value} onChange={onChange} />
}

WrappedCheckboxAsField.propTypes = {
Expand Down

0 comments on commit f25cc02

Please sign in to comment.