File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
app/code/Magento/Checkout/view/frontend/web/template/minicart/item Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 44
44
<!-- ko if: Array.isArray(option.value) -->
45
45
< span data-bind ="html: option.value.join('<br>') "> </ span >
46
46
<!-- /ko -->
47
- <!-- ko if: (!Array.isArray(option.value) && option.option_type == 'file') -->
47
+ <!-- ko if: (!Array.isArray(option.value) && [ 'file', 'html'].includes(option.option_type) ) -->
48
48
< span data-bind ="html: option.value "> </ span >
49
49
<!-- /ko -->
50
- <!-- ko if: (!Array.isArray(option.value) && option.option_type != 'file') -->
51
- < span data-bind ="text: option.value "> </ span >
50
+ <!-- ko if: (!Array.isArray(option.value) && ![ 'file', 'html'].includes(option.option_type) ) -->
51
+ < span data-bind ="text: option.value "> </ span >
52
52
<!-- /ko -->
53
53
</ dd >
54
54
<!-- /ko -->
You can’t perform that action at this time.
0 commit comments