Skip to content

Commit fce26a4

Browse files
committed
Merge remote-tracking branch 'origin/MC-19075' into 2.3.3-develop-pr68
2 parents ee52bbe + 47a1ac1 commit fce26a4

File tree

1 file changed

+2
-2
lines changed
  • app/code/Magento/Checkout/view/frontend/templates/onepage/review

1 file changed

+2
-2
lines changed

app/code/Magento/Checkout/view/frontend/templates/onepage/review/item.phtml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ $taxDataHelper = $this->helper(Magento\Tax\Helper\Data::class);
2828
<dt><?= $block->escapeHtml($_option['label']) ?></dt>
2929
<dd>
3030
<?php if (isset($_formatedOptionValue['full_view'])) :?>
31-
<?= $block->escapeHtml($_formatedOptionValue['full_view']) ?>
31+
<?= /* @noEscape */ $_formatedOptionValue['full_view'] ?>
3232
<?php else :?>
33-
<?= $block->escapeHtml($_formatedOptionValue['value']) ?>
33+
<?= /* @noEscape */ $_formatedOptionValue['value'] ?>
3434
<?php endif; ?>
3535
</dd>
3636
<?php endforeach; ?>

0 commit comments

Comments
 (0)