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 a49618a commit 28159a3Copy full SHA for 28159a3
app/code/Magento/Eav/Model/Entity/Attribute/Source/Table.php
@@ -167,7 +167,9 @@ public function getOptionText($value)
167
$optionsText = [];
168
foreach ($options as $item) {
169
if (in_array($item['value'], $value)) {
170
- $optionsText[] = $this->escaper->escapeHtml($item['label']);
+ $optionsText[] = ($this->_attribute->getIsHtmlAllowedOnFront())
171
+ ? $item['label']
172
+ : $this->escaper->escapeHtml($item['label']);
173
}
174
175
0 commit comments