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() { attachCustomEvents() {
this.prependActionToMethod(this, this.forwardButtonAction, () => { this.prependActionToMethod(this, this.forwardButtonAction, () => {
const self = this; this.pushEventToGA(
self.pushEventToGA( this.$route.query[this.queryStrings.FMG_PAGE],
self.$route.query[self.queryStrings.FMG_PAGE], this.GaActions.SUBMITTED,
self.GaActions.SUBMITTED, this.GaLabels.ADDRESS_LOOKUP,
self.GaLabels.ADDRESS_LOOKUP,
true true
); );
}); });

View file

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

View file

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