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 b7db2b2 commit ef08cbbCopy full SHA for ef08cbb
app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Currency.php
@@ -102,7 +102,9 @@ protected function _getCurrencyCode($row)
102
if ($code = $this->getColumn()->getCurrencyCode()) {
103
return $code;
104
}
105
- if ($code = $row->getData($this->getColumn()->getCurrency())) {
+ $currency = $this->getColumn()->getCurrency();
106
+
107
+ if ($currency !== null && $code = $row->getData($currency)) {
108
109
110
0 commit comments