diff --git a/vendor/magento/module-purchase-order/view/frontend/web/template/checkout/billing-address/details.html b/vendor/magento/module-purchase-order/view/frontend/web/template/checkout/billing-address/details.html
index 4ad454a230..cd19734afe 100644
--- a/vendor/magento/module-purchase-order/view/frontend/web/template/checkout/billing-address/details.html
+++ b/vendor/magento/module-purchase-order/view/frontend/web/template/checkout/billing-address/details.html
@@ -1,21 +1,34 @@
 <!--
 /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
+ * ADOBE CONFIDENTIAL
+ *
+ * Copyright 2020 Adobe
+ * All Rights Reserved.
+ *
+ * NOTICE: All information contained herein is, and remains
+ * the property of Adobe and its suppliers, if any. The intellectual
+ * and technical concepts contained herein are proprietary to Adobe
+ * and its suppliers and are protected by all applicable intellectual
+ * property laws, including trade secret and copyright laws.
+ * Dissemination of this information or reproduction of this material
+ * is strictly forbidden unless prior written permission is obtained
+ * from Adobe.
  */
 -->
 <div if="isAddressDetailsVisible() && currentBillingAddress()" class="billing-address-details">
-    <text args="currentBillingAddress().prefix"></text> <text args="currentBillingAddress().firstname"></text> <text args="currentBillingAddress().middlename"></text>
+    <text args="currentBillingAddress().prefix"></text> <text args="currentBillingAddress().firstname"></text>
+    <text args="currentBillingAddress().middlename"></text>
     <text args="currentBillingAddress().lastname"></text> <text args="currentBillingAddress().suffix"></text><br>
     <if args="currentBillingAddress().company">
         <text args="currentBillingAddress().company"></text><br>
     </if>
-    <text args="currentBillingAddress().street.join(', ')"></text><br>
-    <text args="currentBillingAddress().city "></text>, <span text="currentBillingAddress().region"></span> <text args="currentBillingAddress().postcode"></text><br>
+    <text args="_.values(_.compact(currentBillingAddress().street)).join(', ')"></text><br>
+    <text args="currentBillingAddress().city "></text>, <span text="currentBillingAddress().region"></span>
+    <text args="currentBillingAddress().postcode"></text><br>
     <text args="getCountryName(currentBillingAddress().countryId)"></text><br>
     <a if="currentBillingAddress().telephone" attr="'href': 'tel:' + currentBillingAddress().telephone" text="currentBillingAddress().telephone"></a><br>
     <if args="currentBillingAddress().vatId">
-        VAT: <text args="currentBillingAddress().vatId"></text><br>
+        <translate args="'VAT'"></translate>: <text args="currentBillingAddress().vatId"></text><br>
     </if>
 
     <each args="data: currentBillingAddress().customAttributes, as: 'element'">
