We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ee52bbe + 47a1ac1 commit fce26a4Copy full SHA for fce26a4
app/code/Magento/Checkout/view/frontend/templates/onepage/review/item.phtml
@@ -28,9 +28,9 @@ $taxDataHelper = $this->helper(Magento\Tax\Helper\Data::class);
28
<dt><?= $block->escapeHtml($_option['label']) ?></dt>
29
<dd>
30
<?php if (isset($_formatedOptionValue['full_view'])) :?>
31
- <?= $block->escapeHtml($_formatedOptionValue['full_view']) ?>
+ <?= /* @noEscape */ $_formatedOptionValue['full_view'] ?>
32
<?php else :?>
33
- <?= $block->escapeHtml($_formatedOptionValue['value']) ?>
+ <?= /* @noEscape */ $_formatedOptionValue['value'] ?>
34
<?php endif; ?>
35
</dd>
36
<?php endforeach; ?>
0 commit comments