diff --git a/client/components/CheckboxList.jsx b/client/components/CheckboxList.jsx index efc3e01e..f8b37a91 100644 --- a/client/components/CheckboxList.jsx +++ b/client/components/CheckboxList.jsx @@ -33,6 +33,8 @@ export default class CheckboxList extends PureComponent { this.setState({checkedItems}); this.informAboutChange(checkedItems); } + } else if (newProps.checkedItems !== this.props.checkedItems) { + this.setState({checkedItems: newProps.checkedItems}); } }