@bytebrand/fe-ui-core 4.2.212 → 4.2.213

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bytebrand/fe-ui-core",
3
- "version": "4.2.212",
3
+ "version": "4.2.213",
4
4
  "description": "UI components for the auto.de project",
5
5
  "main": "index.ts",
6
6
  "module": "dist/common.js",
@@ -314,7 +314,7 @@ class FiltersContainer extends React.Component<IFiltersContainerProps, {}> {
314
314
  if (isHistogram) {
315
315
  const histogramData = histograms[filterField].length ? histograms[filterField] : RANGE_FILTERS[filter].options;
316
316
  const actualValues = {
317
- from: histogramData[0].from,
317
+ from: filters[filter].value.from ? filters[filter].value.from : histogramData[0].from,
318
318
  to: histogramData[histogramData.length - 1].to
319
319
  };
320
320