ga defect

This commit is contained in:
Donielle Austin 2022-05-19 08:30:54 -04:00
parent e04979829a
commit e83710fb02
3 changed files with 12 additions and 15 deletions

View file

@ -152,11 +152,10 @@ export default {
},
attachCustomEvents() {
this.prependActionToMethod(this, this.forwardButtonAction, () => {
const self = this;
self.pushEventToGA(
self.$route.query[self.queryStrings.FMG_PAGE],
self.GaActions.SUBMITTED,
self.GaLabels.ADDRESS_LOOKUP,
this.pushEventToGA(
this.$route.query[this.queryStrings.FMG_PAGE],
this.GaActions.SUBMITTED,
this.GaLabels.ADDRESS_LOOKUP,
true
);
});

View file

@ -229,11 +229,10 @@ export default {
},
attachCustomEvents() {
this.prependActionToMethod(this, this.forwardButtonAction, () => {
const self = this;
self.pushEventToGA(
self.$route.query[self.queryStrings.FMG_PAGE],
self.GaActions.SUBMITTED,
self.GaLabels.LICENSE_PLATE_LOOKUP,
this.pushEventToGA(
this.$route.query[this.queryStrings.FMG_PAGE],
this.GaActions.SUBMITTED,
this.GaLabels.LICENSE_PLATE_LOOKUP,
true
);
});

View file

@ -277,11 +277,10 @@ export default {
},
attachCustomEvents() {
this.prependActionToMethod(this, this.forwardButtonAction, () => {
const self = this;
self.pushEventToGA(
self.$route.query[self.queryStrings.FMG_PAGE],
self.GaActions.SUBMITTED,
self.GaLabels.VIN_LOOKUP,
this.pushEventToGA(
this.$route.query[this.queryStrings.FMG_PAGE],
this.GaActions.SUBMITTED,
this.GaLabels.VIN_LOOKUP,
true
);
});