Merge pull request #2539 from rahulshukla-webkul/development
Issue #2538 fixed and change log updated
This commit is contained in:
commit
1b37a5f796
|
|
@ -82,7 +82,9 @@
|
|||
|
||||
* #2526 [fixed] - Velocity backend route is not accessible in arabic locale.
|
||||
|
||||
* #2533 [fixed] - Shipment email notification is not sending to customer
|
||||
* #2533 [fixed] - Shipment email notification is not sending to customer.
|
||||
|
||||
* #2538 [fixed] - unable to place order for virtual & downloadable product.
|
||||
|
||||
## **v1.0.0-BETA1(5th of February 2020)** - *Release*
|
||||
|
||||
|
|
|
|||
|
|
@ -218,9 +218,11 @@
|
|||
break;
|
||||
|
||||
case 'shipping-form':
|
||||
document.body.style.cursor = 'wait';
|
||||
this.saveShipping();
|
||||
break;
|
||||
if (this.showShippingSection) {
|
||||
document.body.style.cursor = 'wait';
|
||||
this.saveShipping();
|
||||
break;
|
||||
}
|
||||
|
||||
case 'payment-form':
|
||||
document.body.style.cursor = 'wait';
|
||||
|
|
|
|||
Loading…
Reference in New Issue