diff --git a/src/common-components/button-question/button-question.vue b/src/common-components/button-question/button-question.vue index c2eb72971..07efe470e 100644 --- a/src/common-components/button-question/button-question.vue +++ b/src/common-components/button-question/button-question.vue @@ -52,7 +52,6 @@ import listButtonHorizontal from "@/ux-components/list-button-horizontal/list-bu import listCard from "@/ux-components/list-card/list-card"; import { ErrorMessage } from 'vee-validate'; import radio from "@/ux-components/radio/radio"; -import { queryStrings } from "@/constants/query-strings"; export default { name: "buttonQuestion", @@ -135,8 +134,6 @@ export default { }, handleCheckedChanged(val) { - this.pushEventToGA(this.$route.query[queryStrings.FMG_PAGE], this.GaActions.CLICKED, val.value, true); - if(this.isMultiSelect && this.selectedValues) { // Add or remove item to array of data to emit const newSelectedValues = this.selectedValues; diff --git a/src/mixins/analytics-mixin.js b/src/mixins/analytics-mixin.js index 2e71a0aae..ca5a24a3e 100644 --- a/src/mixins/analytics-mixin.js +++ b/src/mixins/analytics-mixin.js @@ -11,7 +11,7 @@ export default { logPageView(pageEvent) { // if the user does not have a session id from the content site, do not log. const sid = getSessionIdValue(); - if (sid === '00000000-0000-0000-0000-000000000000') { + if (sid === '00000000-0000-0000-0000-000000000000' || sid == null) { return; } @@ -32,7 +32,7 @@ export default { logCustomEvent(category, action, label, value) { // if the user does not have a session id from the content site, do not log. const sid = getSessionIdValue(); - if (sid === '00000000-0000-0000-0000-000000000000') { + if (sid === '00000000-0000-0000-0000-000000000000' || sid == null) { return; } diff --git a/src/ux-components/list-button-horizontal/list-button-horizontal.vue b/src/ux-components/list-button-horizontal/list-button-horizontal.vue index 974a965b8..eef4be443 100644 --- a/src/ux-components/list-button-horizontal/list-button-horizontal.vue +++ b/src/ux-components/list-button-horizontal/list-button-horizontal.vue @@ -54,6 +54,7 @@