Skip to content

Commit

Permalink
Fix bug on histograms
Browse files Browse the repository at this point in the history
  • Loading branch information
cnasikas committed Jul 8, 2020
1 parent 5a464b1 commit 5e7e165
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -113,8 +113,8 @@ export const MatrixHistogramComponent: React.FC<
const [min, max] = x;
dispatchSetAbsoluteRangeDatePicker({
id: setAbsoluteRangeDatePickerTarget,
from: min,
to: max,
from: new Date(min).toISOString(),
to: new Date(max).toISOString(),
});
},
yTickFormatter,
Expand Down

0 comments on commit 5e7e165

Please sign in to comment.