From b5f060226a0168ed0acabb012ce4e6919216020b Mon Sep 17 00:00:00 2001 From: Marcos Date: Mon, 27 Jul 2026 23:12:05 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=80=20Auto-deploy:=20BrainWind=20atual?= =?UTF-8?q?izado=20em=2027/07/2026=2023:12:05?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/src/pages/ShelterModule.tsx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/app/src/pages/ShelterModule.tsx b/app/src/pages/ShelterModule.tsx index 6e6da49..4cab08c 100644 --- a/app/src/pages/ShelterModule.tsx +++ b/app/src/pages/ShelterModule.tsx @@ -104,9 +104,9 @@ const ShelterModule: React.FC = () => { title: 'Geometria, Inclinação e Fechamentos do Abrigo', type: 'grid', gridItems: [ - { label: 'Comprimento (d / balanço)', value: `${depth} m` }, - { label: 'Largura (b)', value: `${width} m` }, - { label: 'Altura do Pilar (h)', value: `${height} m` }, + { label: 'Comprimento (d / balanço)', value: `${depth.toFixed(1)} m` }, + { label: 'Largura (b)', value: `${width.toFixed(1)} m` }, + { label: 'Altura do Pilar (h)', value: `${height.toFixed(1)} m` }, { label: 'Inclinação da Cobertura (θ)', value: `${theta}°` }, { label: 'Incidência do Vento (Direção)', value: angleLabel }, { label: 'Fechamento da Parede Traseira', value: `${backClosure}%` }, @@ -363,16 +363,16 @@ const ShelterModule: React.FC = () => {
Altura do Pilar (h): - {height} m + {height.toFixed(1)} m
setHeight(v[0])} />
Largura do Abrigo (b): - {width} m + {width.toFixed(1)} m
- setWidth(v[0])} /> + setWidth(v[0])} />