Prettified

This commit is contained in:
Leah Schumann 2023-06-28 08:18:10 -04:00
parent 05703387b4
commit b192925225
2 changed files with 3 additions and 5 deletions

View file

@ -209,7 +209,7 @@ export default {
get: function () { get: function () {
return document.getElementById("autocomplete"); return document.getElementById("autocomplete");
}, },
}, },
}, },
methods: { methods: {
loadGooglePlacesAutocompleteScript() { loadGooglePlacesAutocompleteScript() {
@ -259,7 +259,7 @@ export default {
if (this.matchFound !== null) { if (this.matchFound !== null) {
return; return;
} }
const event = new Event("place_changed"); const event = new Event("place_changed");
// When either of the two enter keys or the tab key are pressed // When either of the two enter keys or the tab key are pressed
@ -277,7 +277,6 @@ export default {
// Otherwise fill-in the address using first item from the list. // Otherwise fill-in the address using first item from the list.
this.fillInAddressUsingFirstItem(); this.fillInAddressUsingFirstItem();
} }
} else { } else {
return; return;
} }
@ -434,7 +433,6 @@ export default {
}, },
{ deep: true, flush: "post" } { deep: true, flush: "post" }
); );
} }
}, },
}, },

View file

@ -90,7 +90,7 @@ export default {
}, },
modal() { modal() {
return this.$refs[this.modalName]; return this.$refs[this.modalName];
} },
}, },
methods: { methods: {
resetAlerts() { resetAlerts() {