From 4be522d35fc0df2690a3f7dfc822dc3142090679 Mon Sep 17 00:00:00 2001 From: AI Studio Date: Thu, 13 Aug 2026 04:33:53 +0000 Subject: [PATCH] Cambiar formato de respuesta de interconsultas de Badge a contenedor con padding --- src/sections/HistoriaClinica.tsx | 20 +++++++++----------- 1 file changed, 9 insertions(+), 11 deletions(-) diff --git a/src/sections/HistoriaClinica.tsx b/src/sections/HistoriaClinica.tsx index 2003034..d33d762 100644 --- a/src/sections/HistoriaClinica.tsx +++ b/src/sections/HistoriaClinica.tsx @@ -3486,17 +3486,15 @@ function SeccionInterconsultas({ interconsultas, pacienteId, internacionId, add,

{ic.motivo}

)} {ic.respuestaInterconsulta && ( - <> - {ic.respuestaFecha && ( - - -

Respuesta: {ic.respuestaFecha}
- {ic.respuestaInterconsulta}
-

-
- )} - - +
+
+ + Respuesta{ic.respuestaFecha ? `: ${ic.respuestaFecha}` : ''} +
+

+ {ic.respuestaInterconsulta} +

+
)}