Skip to content

Commit

Permalink
Merge branch 'alex-min-max' into alex-bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
alexsielicki committed Jun 20, 2023
2 parents 4f5160f + d9150bf commit 2cc156d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ FilterManager.prototype.build_sliders = function () {
// Update redux state each time active filters changes
self.active_filters.subscribe(function (newValue) {
// console.debug(`active_filters is %o`, newValue);
window.store.dispatch(setActiveFilters(newValue));
window.store.dispatch(setActiveFilters(newValue.map((value) => JSON.stringify(value))));
});
numericFilters = ko.pureComputed(function () {
return _.filter(filters(), function (f) {
Expand Down

0 comments on commit 2cc156d

Please sign in to comment.