diff --git a/src/iss-components/address-questions/address-questions.vue b/src/iss-components/address-questions/address-questions.vue index b05d1c94..8208f6ce 100644 --- a/src/iss-components/address-questions/address-questions.vue +++ b/src/iss-components/address-questions/address-questions.vue @@ -1,20 +1,5 @@ @@ -130,6 +128,7 @@ export default { matchFound: null, // null = no attempted match, true = match was found, false = match was not found enterPressed: false, isAddressWatchActive: false, // Only deep watch the address model when a match was not found + showAllFields: false, }; }, computed: { @@ -210,6 +209,8 @@ export default { // If a match has been previously found then do nothing // OR // If the user pressed "Enter" then do nothing + this.showAllFields = true; + if (self.matchFound || self.enterPressed) { return; } @@ -307,6 +308,7 @@ export default { }, mounted() { this.setupAddressLookup(); + this.showAllFields = !!this.addressModel.streetAddress; }, watch: { matchFound: {