This commit is contained in:
Brian Lovin 2019-01-13 16:05:01 -08:00
parent acf55b4790
commit ff3d4cb89d

View file

@ -40,7 +40,7 @@ class ChecklistItem extends React.Component<Props, State> {
}
handleSetChecked = () => {
const { isChecked, isCollapsed } = this.state;
const { isChecked } = this.state;
const { resource } = this.props;
setCheckedStatusById(resource.id, !isChecked);
return this.setState({ isChecked: !isChecked, isCollapsed: !isChecked });