Skip to content

Commit

Permalink
[Backport] [TASK] Remove translation of attribute store label in getA…
Browse files Browse the repository at this point in the history
…dditionalData
  • Loading branch information
mage2pratik committed Mar 21, 2019
1 parent ae34e60 commit c4312eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/code/Magento/Catalog/Block/Product/View/Attributes.php
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ public function getAdditionalData(array $excludeAttr = [])

if (is_string($value) && strlen(trim($value))) {
$data[$attribute->getAttributeCode()] = [
'label' => __($attribute->getStoreLabel()),
'label' => $attribute->getStoreLabel(),
'value' => $value,
'code' => $attribute->getAttributeCode(),
];
Expand Down

0 comments on commit c4312eb

Please sign in to comment.