Skip to content

Commit c1ff0de

Browse files
author
Stanislav Idolov
committed
MAGETWO-39446: "Place Order" button should be disabled until billing address is set
-- fixes after CR
1 parent 5cb88f1 commit c1ff0de

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/code/Magento/Checkout/view/frontend/web/js/view/billing-address.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ define(
1616
'mage/translate'
1717
],
1818
function (ko, Component, customer, addressList, quote, createBillingAddress, selectBillingAddress, $t) {
19-
"use strict";
19+
'use strict';
2020

2121
var lastSelectedBillingAddress = null,
2222
newAddressOption = {
@@ -116,7 +116,7 @@ define(
116116
}
117117
},
118118

119-
restoreBillingAddress: function() {
119+
restoreBillingAddress: function () {
120120
if (lastSelectedBillingAddress != null) {
121121
selectBillingAddress(lastSelectedBillingAddress);
122122
}

0 commit comments

Comments
 (0)