Prettified
This commit is contained in:
parent
f3f17490ee
commit
040f3490e4
3 changed files with 5 additions and 5 deletions
|
|
@ -60,9 +60,9 @@ export default {
|
|||
async validateAndEmit() {
|
||||
const validationResult = await this.modalForm.validate();
|
||||
if (validationResult.valid) {
|
||||
this.$emit('footer-button-event');
|
||||
}
|
||||
|
||||
this.$emit("footer-button-event");
|
||||
}
|
||||
|
||||
this.resetButtonStyle();
|
||||
},
|
||||
resetButtonStyle() {
|
||||
|
|
|
|||
|
|
@ -123,7 +123,7 @@ export default {
|
|||
this.$refs.mobileLocationModal.closeModal();
|
||||
},
|
||||
async setMobileLocation() {
|
||||
this.closeModal();
|
||||
this.closeModal();
|
||||
},
|
||||
},
|
||||
components: {
|
||||
|
|
|
|||
|
|
@ -132,7 +132,7 @@ export default {
|
|||
this.resetAlerts();
|
||||
|
||||
const zipCodeData = await this.getZipCodeData(this.serviceZipCodeInput);
|
||||
|
||||
|
||||
if (!zipCodeData.isValid) {
|
||||
this.displayInvalidZipAlert = true;
|
||||
} else if (!zipCodeData.isServiceable) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue