Merge branch 'dev_environment' of gitlab.com:brandx/bxt-app into dev_environment

This commit is contained in:
Carter 2025-02-27 12:06:52 -06:00
commit 707d44ead1
2 changed files with 2 additions and 2 deletions

View file

@ -162,7 +162,7 @@ export default function AreaGraph(props: Props) {
} else {
str = describer.convertWithoutUnits(
roundTo(parseFloat(String(value)), 2),
// newStructure
true
);
}
return str + describer.GetUnit();

View file

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