Corregir PaFiO2: operación y posición

This commit is contained in:
2026-04-16 02:20:23 -03:00
parent c041df0a87
commit fd09b4f53f
+1 -1
View File
@@ -1462,8 +1462,8 @@ function SeccionAcidosBase({ ab, patientId, add, update, del }: {
<div className="bg-gray-50 p-2 rounded text-center"><p className="text-xs text-gray-500">BE</p><p className="font-bold">{a.be}</p></div>
<div className="bg-gray-50 p-2 rounded text-center"><p className="text-xs text-gray-500">SatO2</p><p className="font-bold">{a.sato2}%</p></div>
{a.lactato && <div className="bg-gray-50 p-2 rounded text-center"><p className="text-xs text-gray-500">Lactato</p><p className="font-bold">{a.lactato}</p></div>}
{a.fio2 && a.po2 && <div className="bg-orange-100 p-2 rounded text-center"><p className="text-xs text-orange-600">PaFiO</p><p className="font-bold text-orange-700">{Math.round(a.po2 / a.fio2 * 100) / 100}</p></div>}
{a.fio2 && <div className="bg-gray-50 p-2 rounded text-center"><p className="text-xs text-gray-500">FiO2</p><p className="font-bold">{a.fio2}</p></div>}
{a.fio2 && a.po2 && <div className="bg-orange-100 p-2 rounded text-center"><p className="text-xs text-orange-600">PaFiO</p><p className="font-bold text-orange-700">{Math.round((a.po2 / a.fio2) * 100)}</p></div>}
</div>
{a.interpretacion && <div className="bg-teal-50 p-3 rounded-lg border border-teal-200"><p className="text-sm font-medium text-teal-800">Interpretación: {a.interpretacion}</p></div>}
</div>