diff --git a/src/components/producao/ApontamentoDiarioChart.tsx b/src/components/producao/ApontamentoDiarioChart.tsx index 87766ba..1ed3d09 100644 --- a/src/components/producao/ApontamentoDiarioChart.tsx +++ b/src/components/producao/ApontamentoDiarioChart.tsx @@ -266,7 +266,7 @@ export const ApontamentoDiarioChart = () => { style={{ bottom: `${linha.porcentagem}%`, transform: 'translateY(50%)' }} > - {linha.valor >= 1000 ? `${(linha.valor/1000).toFixed(0)}t` : `${linha.valor}kg`} + {Math.round(linha.valor).toLocaleString('pt-BR')} Kg
@@ -319,7 +319,7 @@ export const ApontamentoDiarioChart = () => { > {alturaPixels > 20 && ( - {ofData.peso > 999 ? `${Math.round(ofData.peso/1000)}t` : `${ofData.peso}kg`} + {Math.round(ofData.peso).toLocaleString('pt-BR')} Kg )}