remove extra changes
This commit is contained in:
parent
be644f6134
commit
7cf09f56ac
|
|
@ -499,15 +499,13 @@
|
|||
|
||||
backToSavedBillingAddress: function () {
|
||||
this.new_billing_address = false;
|
||||
this.validateFormAfterAction()
|
||||
setTimeout(() => {
|
||||
this.validateForm('address-form');
|
||||
}, 0);
|
||||
},
|
||||
|
||||
backToSavedShippingAddress: function () {
|
||||
this.new_shipping_address = false;
|
||||
this.validateFormAfterAction()
|
||||
},
|
||||
|
||||
validateFormAfterAction: function () {
|
||||
setTimeout(() => {
|
||||
this.validateForm('address-form');
|
||||
}, 0);
|
||||
|
|
|
|||
|
|
@ -83,7 +83,7 @@
|
|||
type="checkbox"
|
||||
id="billing[use_for_shipping]"
|
||||
name="billing[use_for_shipping]"
|
||||
@change="validateFormAfterAction"
|
||||
@change="setTimeout(() => validateForm('address-form'), 0)"
|
||||
v-model="address.billing.use_for_shipping" />
|
||||
|
||||
<span class="ml-5">
|
||||
|
|
|
|||
|
|
@ -514,7 +514,7 @@
|
|||
type="checkbox"
|
||||
id="billing[use_for_shipping]"
|
||||
name="billing[use_for_shipping]"
|
||||
@change="validateFormAfterAction"
|
||||
@change="setTimeout(() => validateForm('address-form'), 0)"
|
||||
v-model="address.billing.use_for_shipping" />
|
||||
|
||||
<span class="ml-5">
|
||||
|
|
|
|||
Loading…
Reference in New Issue