File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
app/code/Magento/Checkout/view/frontend/web/js/view Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ define(
39
39
this . _super ( )
40
40
. observe ( {
41
41
selectedAddress : null ,
42
- isAddressDetailsVisible : quote . shippingAddress ( ) != null ,
42
+ isAddressDetailsVisible : quote . billingAddress ( ) != null ,
43
43
isAddressFormVisible : ! customer . isLoggedIn ( ) || addressOptions . length == 1 ,
44
44
isAddressSameAsShipping : false
45
45
} ) ;
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ define(
17
17
'use strict' ;
18
18
return Component . extend ( {
19
19
redirectAfterPlaceOrder : true ,
20
- isPlaceOrderActionAllowed : ko . observable ( true ) ,
20
+ isPlaceOrderActionAllowed : ko . observable ( quote . billingAddress ( ) != null ) ,
21
21
/**
22
22
* Initialize view.
23
23
*
You can’t perform that action at this time.
0 commit comments