CASH-709
remove fluctuation issue
This commit is contained in:
parent
8004028d3f
commit
e56174f012
2 changed files with 6 additions and 2 deletions
|
|
@ -235,7 +235,6 @@ export default {
|
|||
this.displayMismatchStateAndZipAlert = false;
|
||||
},
|
||||
async setMobileLocation() {
|
||||
this.resetAlerts();
|
||||
// Validate the Zip Code
|
||||
if (
|
||||
this.internalModel.addressQuestions.zipCode === "" ||
|
||||
|
|
@ -250,10 +249,12 @@ export default {
|
|||
);
|
||||
|
||||
if (!zipCodeData.isValid) {
|
||||
this.displayMismatchStateAndZipAlert = false;
|
||||
this.displayInvalidZipAlert = true;
|
||||
this.setMobileLocationInvalid(true);
|
||||
return;
|
||||
} else if (zipCodeData.state != this.internalModel.addressQuestions.state) {
|
||||
this.displayInvalidZipAlert = false;
|
||||
this.displayMismatchStateAndZipAlert = true;
|
||||
this.setMobileLocationInvalid(true);
|
||||
return;
|
||||
|
|
@ -261,6 +262,9 @@ export default {
|
|||
this.internalModel.addressQuestions.zipCode !==
|
||||
this.modelValue.addressQuestions.zipCode
|
||||
) {
|
||||
//reset alerts
|
||||
this.resetAlerts();
|
||||
|
||||
// retrieve mobile fee part
|
||||
const serviceZipCode = this.internalModel.addressQuestions.zipCode;
|
||||
const mobileFeePart = await getPricedMobileFeePart(
|
||||
|
|
|
|||
|
|
@ -57,7 +57,7 @@ export default {
|
|||
</script>
|
||||
|
||||
<style lang="scss">
|
||||
.modal-dialog {
|
||||
.mobile-location-questions {
|
||||
.question-text {
|
||||
& > span {
|
||||
text-align: left;
|
||||
|
|
|
|||
Loading…
Reference in a new issue