We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d598c12 commit 024625eCopy full SHA for 024625e
app/code/Magento/Checkout/view/frontend/web/template/minicart/item/default.html
@@ -44,11 +44,11 @@
44
<!-- ko if: Array.isArray(option.value) -->
45
<span data-bind="html: option.value.join('<br>')"></span>
46
<!-- /ko -->
47
- <!-- ko if: (!Array.isArray(option.value) && option.option_type == 'file') -->
+ <!-- ko if: (!Array.isArray(option.value) && ['file', 'html'].includes(option.option_type)) -->
48
<span data-bind="html: option.value"></span>
49
50
- <!-- ko if: (!Array.isArray(option.value) && option.option_type != 'file') -->
51
- <span data-bind="text: option.value"></span>
+ <!-- ko if: (!Array.isArray(option.value) && !['file', 'html'].includes(option.option_type)) -->
+ <span data-bind="text: option.value"></span>
52
53
</dd>
54
0 commit comments