We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2841088 + 2af8717 commit 238ce85Copy full SHA for 238ce85
app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/Price.php
@@ -194,11 +194,11 @@ public function getCondition()
194
$rate = $this->_getRate($displayCurrency, $this->_getColumnCurrencyCode());
195
196
if (isset($value['from'])) {
197
- $value['from'] *= $rate;
+ $value['from'] = (float) $value['from'] * $rate;
198
}
199
200
if (isset($value['to'])) {
201
- $value['to'] *= $rate;
+ $value['to'] = (float) $value['to'] * $rate;
202
203
204
$this->prepareRates($displayCurrency);
0 commit comments