CSR-762 Fix null check
This commit is contained in:
parent
cf14826a94
commit
9ee87f3437
1 changed files with 1 additions and 1 deletions
|
|
@ -143,7 +143,7 @@ export default {
|
||||||
this.pushClickEventToGA();
|
this.pushClickEventToGA();
|
||||||
} else {
|
} else {
|
||||||
if (
|
if (
|
||||||
this.valueToEmit &&
|
this.valueToEmit !== null &&
|
||||||
!this.isValueSelectedOnClick &&
|
!this.isValueSelectedOnClick &&
|
||||||
this.isChecked &&
|
this.isChecked &&
|
||||||
this.lastValuePushedToGa != this.value
|
this.lastValuePushedToGa != this.value
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue