@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
|
@@ -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
|
|