Skip to content

Commit e2e82b0

Browse files
committed
AC-691 fix details.html tries to join street address fields on undefined value
1 parent 1807f70 commit e2e82b0

File tree

1 file changed

+1
-1
lines changed
  • app/code/Magento/Checkout/view/frontend/web/template/billing-address

1 file changed

+1
-1
lines changed

app/code/Magento/Checkout/view/frontend/web/template/billing-address/details.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<text args="currentBillingAddress().prefix"></text> <text args="currentBillingAddress().firstname"></text>
99
<text args="currentBillingAddress().middlename"></text>
1010
<text args="currentBillingAddress().lastname"></text> <text args="currentBillingAddress().suffix"></text><br/>
11-
<text args="currentBillingAddress().street.join(', ')"></text><br/>
11+
<text args="_.values(currentBillingAddress().street).join(', ')"></text><br/>
1212
<text args="currentBillingAddress().city "></text>, <span text="currentBillingAddress().region"></span>
1313
<text args="currentBillingAddress().postcode"></text><br/>
1414
<text args="getCountryName(currentBillingAddress().countryId)"></text><br/>

0 commit comments

Comments
 (0)