Skip to content

Commit d9bb2fc

Browse files
Merge pull request #106 from magento-epam/MAGETWO-91760-rebase
MAGETWO-91760: Custom address attributes displays with wrong value on…
2 parents a8c49c4 + 92e5fdd commit d9bb2fc

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@
2323
<text args="element[attribute].value"/>
2424
</if>
2525
</ifnot>
26-
<if args="typeof element[attribute] === 'string'">
27-
<text args="element[attribute]"/>
28-
</if>
26+
</if>
27+
<if args="typeof element[attribute] === 'string'">
28+
<text args="element[attribute]"/>
2929
</if><br/>
3030
</each>
3131
</each>

app/code/Magento/Checkout/view/frontend/web/template/shipping-address/address-renderer/default.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@
2323
<text args="element[attribute].value"/>
2424
</if>
2525
</ifnot>
26-
<if args="typeof element[attribute] === 'string'">
27-
<text args="element[attribute]"/>
28-
</if>
26+
</if>
27+
<if args="typeof element[attribute] === 'string'">
28+
<text args="element[attribute]"/>
2929
</if><br/>
3030
</each>
3131
</each>

app/code/Magento/Checkout/view/frontend/web/template/shipping-information/address-renderer/default.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@
2323
<text args="element[attribute].value"/>
2424
</if>
2525
</ifnot>
26-
<if args="typeof element[attribute] === 'string'">
27-
<text args="element[attribute]"/>
28-
</if>
26+
</if>
27+
<if args="typeof element[attribute] === 'string'">
28+
<text args="element[attribute]"/>
2929
</if><br/>
3030
</each>
3131
</each>

0 commit comments

Comments
 (0)