Skip to content

Commit

Permalink
Merge pull request #114 from tatiana-scandi/2991/wrong-currency-for-p…
Browse files Browse the repository at this point in the history
…rice-filter-range

#2991 - fix price range wrong currency
  • Loading branch information
carinadues authored Aug 17, 2021
2 parents 7875b0a + 118abdf commit cb4ed73
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Model/Layer/Filter/Price.php
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ public function build(AggregationInterface $aggregation, ?int $storeId): array
// Builds graph-ql response
$result['options'][] = $this->layerFormatter->buildItem(
$priceRange['from'] . '~' . $priceRange['to'],
$metrics['value'],
$priceRange['from'] . '_' . $priceRange['to'],
$metrics['count']
);
}
Expand Down

0 comments on commit cb4ed73

Please sign in to comment.