From 88c630ea7a13ee1356352cadf0a6ef00aff466ef Mon Sep 17 00:00:00 2001 From: Sergio Nicolas Lavaise Date: Thu, 16 Apr 2026 13:04:32 -0300 Subject: [PATCH] Debug: log clave evaluando --- src/sections/HistoriaClinica.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/sections/HistoriaClinica.tsx b/src/sections/HistoriaClinica.tsx index e10862e..9ad5a65 100644 --- a/src/sections/HistoriaClinica.tsx +++ b/src/sections/HistoriaClinica.tsx @@ -726,6 +726,7 @@ for (const linea of lineas) { const lineaLower = linea.toLowerCase().trim(); for (const [clave, info] of Object.entries(mapeoParametros)) { + console.log('Clave evaluando:', clave, 'incluye?', lineaLower.includes(clave)); if (lineaLower.includes(clave)) { const cleanLinea = linea.replace(/show_chart|list_alt/g, '').replace(/\t+/g, ' ').replace(/\s+/g, ' ').trim(); const partes = cleanLinea.split(' ');