|
@@ -34,7 +34,7 @@ export class CheckBoxLineComponent extends React.Component<ICheckBoxLineComponen
|
|
|
if (this.props.isSelected) {
|
|
|
currentState = nextProps.isSelected!();
|
|
|
} else {
|
|
|
- currentState = nextProps.target[nextProps.propertyName!] === true;
|
|
|
+ currentState = nextProps.target[nextProps.propertyName!] == true;
|
|
|
}
|
|
|
|
|
|
if (currentState !== nextState.isSelected || this._localChange) {
|