added true to fix the tooltip on the chart

This commit is contained in:
csawatzky 2025-02-27 11:24:29 -06:00
parent 9633fb7bb6
commit e548566854

View file

@ -208,7 +208,7 @@ export default function MultiLineGraph(props: Props) {
{...props} {...props}
valueFormatter={value => { valueFormatter={value => {
return describer.convertWithUnits( return describer.convertWithUnits(
roundTo(parseFloat(String(value)), 2) roundTo(parseFloat(String(value)), 2), true
); );
}} }}
/> />