Skip to content

Commit 7cb0cf8

Browse files
committed
fix issue-21960
1 parent f3d7a0d commit 7cb0cf8

File tree

1 file changed

+1
-1
lines changed
  • app/code/Magento/CatalogSearch/Model/Layer/Filter

1 file changed

+1
-1
lines changed

app/code/Magento/CatalogSearch/Model/Layer/Filter/Decimal.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ protected function _getItemsData()
115115
}
116116
$label = $this->renderRangeLabel(
117117
empty($from) ? 0 : $from,
118-
empty($to) ? 0 : $to
118+
empty($to) ? $to : $to
119119
);
120120
$value = $from . '-' . $to;
121121

0 commit comments

Comments
 (0)