From 857ce09797ff9d3643b043a13e7007de23c063ed Mon Sep 17 00:00:00 2001 From: snlavaise Date: Tue, 11 Aug 2026 23:20:46 +0000 Subject: [PATCH] =?UTF-8?q?Agregar=20indicador/badge=20amarillo=20con=20el?= =?UTF-8?q?=20recuento=20de=20camas=20Fuera=20de=20=C3=81rea?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/sections/MapaCamas.tsx | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/sections/MapaCamas.tsx b/src/sections/MapaCamas.tsx index 63d4ae3..3b5d4a7 100644 --- a/src/sections/MapaCamas.tsx +++ b/src/sections/MapaCamas.tsx @@ -187,14 +187,17 @@ export function MapaCamas({

Gestión de camas del servicio

-
+
{camas.filter(c => c.estado === 'Disponible' && !isCamaFueraDeGrupo(c, grupos)).length} Disponibles {camas.filter(c => c.estado === 'Ocupada' && !isCamaFueraDeGrupo(c, grupos)).length} Ocupadas -
+ + {camas.filter(c => isCamaFueraDeGrupo(c)).length} Fuera de Área + +