Skip to content

Commit

Permalink
Merge pull request #4455 from magento-arcticfoxes/MC-17855
Browse files Browse the repository at this point in the history
[arcticfoxes] Bug Fixes
  • Loading branch information
Joan He authored Jul 11, 2019
2 parents 9875d78 + 0b9825a commit 6fd1cb4
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@
<?php $_formatedOptionValue = $block->getFormatedOptionValue($_option) ?>
<dt><?= $block->escapeHtml($_option['label']) ?></dt>
<dd<?= (isset($_formatedOptionValue['full_view']) ? ' class="tooltip wrapper"' : '') ?>>
<?= $block->escapeHtml($_formatedOptionValue['value']) ?>
<?= $block->escapeHtml($_formatedOptionValue['value'], ['span']) ?>
<?php if (isset($_formatedOptionValue['full_view'])) : ?>
<dl class="item options tooltip content">
<dt><?= $block->escapeHtml($_option['label']) ?></dt>
<dd><?= $block->escapeHtml($_formatedOptionValue['full_view']) ?></dd>
<dd><?= $block->escapeHtml($_formatedOptionValue['full_view'], ['span']) ?></dd>
</dl>
<?php endif; ?>
</dd>
Expand Down

0 comments on commit 6fd1cb4

Please sign in to comment.