Skip to content

Commit

Permalink
#533 RHS tab and filters not preserved in snapshot
Browse files Browse the repository at this point in the history
  • Loading branch information
Adriána Kohanová committed Feb 5, 2021
1 parent 430fa7c commit 7d18976
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ export const DatasetMoleculeListSortFilter = memo(
};

const handleCommitChangeSlider = (event, newValue) => {
setting.minValue = isBoolean ? 1 : (isFloat ? newValue[0] / MULT : newValue[0]);
setting.minValue = isFloat ? newValue[0] / MULT : newValue[0];
setting.maxValue = isFloat ? newValue[1] / MULT : newValue[1];
if (newValue === 1) {
setting.isChecked = false;
Expand Down

0 comments on commit 7d18976

Please sign in to comment.