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.
1 parent 0c12706 commit ed1df5fCopy full SHA for ed1df5f
app/code/Magento/Checkout/view/frontend/web/template/minicart/item/default.html
@@ -44,7 +44,10 @@
44
<!-- ko if: Array.isArray(option.value) -->
45
<span data-bind="html: option.value.join('<br>')"></span>
46
<!-- /ko -->
47
- <!-- ko ifnot: Array.isArray(option.value) -->
+ <!-- ko if: (!Array.isArray(option.value) && option.option_type == 'file') -->
48
+ <span data-bind="html: option.value"></span>
49
+ <!-- /ko -->
50
+ <!-- ko if: (!Array.isArray(option.value) && option.option_type != 'file') -->
51
<span data-bind="text: option.value"></span>
52
53
</dd>
0 commit comments