From 9ee87f343782ec0e84ef085e4c22c27120096600 Mon Sep 17 00:00:00 2001 From: Katie Date: Fri, 14 Oct 2022 15:29:11 -0400 Subject: [PATCH] CSR-762 Fix null check --- src/common-components/base-input-button/base-input-button.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common-components/base-input-button/base-input-button.vue b/src/common-components/base-input-button/base-input-button.vue index 767d96649..fa4db2647 100644 --- a/src/common-components/base-input-button/base-input-button.vue +++ b/src/common-components/base-input-button/base-input-button.vue @@ -143,7 +143,7 @@ export default { this.pushClickEventToGA(); } else { if ( - this.valueToEmit && + this.valueToEmit !== null && !this.isValueSelectedOnClick && this.isChecked && this.lastValuePushedToGa != this.value