diff --git a/frontend/src/components/Graph/yAxisConfig.ts b/frontend/src/components/Graph/yAxisConfig.ts index 44377b6fc52eee1b3348f5c00b3f19954ebac444..5d1eeb5da7879f694ca7fac9877d678fc3830a2d 100644 --- a/frontend/src/components/Graph/yAxisConfig.ts +++ b/frontend/src/components/Graph/yAxisConfig.ts @@ -7,17 +7,13 @@ export const getYAxisFormattedValue = ( let decimalPrecision: number | undefined; const parsedValue = getValueFormat(format)( parseFloat(value), - 12, - 12, + undefined, + undefined, undefined, ); - try { const decimalSplitted = parsedValue.text.split('.'); - if ( - decimalSplitted.length === 1 || - parseFloat(parsedValue.text) === parseInt(parsedValue.text, 10) - ) { + if (decimalSplitted.length === 1) { decimalPrecision = 0; } else { const decimalDigits = decimalSplitted[1].split('');