Skip to content

Commit e71255e

Browse files
author
Oleksandr Dubovyk
committed
MAGETWO-97966: [2.3] Country of Manufacture displays empty under More Information tab
1 parent 8dfe26a commit e71255e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/code/Magento/Catalog/Block/Product/View/Attributes.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ public function getAdditionalData(array $excludeAttr = [])
8888
$value = $this->priceCurrency->convertAndFormat($value);
8989
}
9090

91-
if (is_string($value) && strlen($value)) {
91+
if (is_string($value) && strlen(trim($value))) {
9292
$data[$attribute->getAttributeCode()] = [
9393
'label' => __($attribute->getStoreLabel()),
9494
'value' => $value,

0 commit comments

Comments
 (0)