Skip to content

Commit

Permalink
#2991 - fix price range for wrong currency returned
Browse files Browse the repository at this point in the history
  • Loading branch information
tatiana-scandi committed Aug 4, 2021
1 parent 3e44fc4 commit 118abdf
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 @@ -94,7 +94,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 118abdf

Please sign in to comment.