INSR-10489: Fix inconsistent indentation and missing semicolons
This commit is contained in:
parent
b5620e087e
commit
ca8d77d2c2
1 changed files with 8 additions and 8 deletions
|
|
@ -1034,21 +1034,21 @@ export default {
|
||||||
this.benefitRecalModalAcknowledged = true;
|
this.benefitRecalModalAcknowledged = true;
|
||||||
},
|
},
|
||||||
scheduleElsewhereClicked() {
|
scheduleElsewhereClicked() {
|
||||||
this.navigateBack(this, this.navigateBackScenario)
|
this.navigateBack(this, this.navigateBackScenario);
|
||||||
},
|
},
|
||||||
backButtonAction() {
|
backButtonAction() {
|
||||||
if (this.hasBenefitRecalModal && !this.benefitRecalModalAcknowledged) {
|
if (this.hasBenefitRecalModal && !this.benefitRecalModalAcknowledged) {
|
||||||
this.$refs[BENEFIT_RECAL_MODAL_REF_NAME].openModal();
|
this.$refs[BENEFIT_RECAL_MODAL_REF_NAME].openModal();
|
||||||
const gaLabel = this.mainStore.hasRecalibrationPart ? 'recalibration_version' : 'non-recalibration_version';
|
const gaLabel = this.mainStore.hasRecalibrationPart ? 'recalibration_version' : 'non-recalibration_version';
|
||||||
this.pushEventToGA(
|
this.pushEventToGA(
|
||||||
'safelite_benefit_modal_displayed',
|
'safelite_benefit_modal_displayed',
|
||||||
this.mainStore.accountNameForEvents,
|
this.mainStore.accountNameForEvents,
|
||||||
gaLabel,
|
gaLabel,
|
||||||
true
|
true
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
this.navigateBack(this, this.navigateBackScenario)
|
this.navigateBack(this, this.navigateBackScenario);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue