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 adc4105 commit 51aa539Copy full SHA for 51aa539
app/code/Magento/Catalog/Ui/Component/Listing/Columns/Thumbnail.php
@@ -77,7 +77,6 @@ public function prepareDataSource(array $dataSource)
77
78
return $dataSource;
79
}
80
-
81
/**
82
* Get Alt
83
*
@@ -88,6 +87,8 @@ public function prepareDataSource(array $dataSource)
88
87
protected function getAlt($row)
89
{
90
$altField = $this->getData('config/altField') ?: self::ALT_FIELD;
91
- return $row[$altField] ?? null;
+ return html_entity_decode($row[$altField],ENT_QUOTES, "UTF-8") ?? null;
+
92
93
94
0 commit comments