From e66821570ee01dae5248d22555f98d71afd454f6 Mon Sep 17 00:00:00 2001 From: IO420 <320154041@pcpuma.acatlan.unam.mx> Date: Tue, 2 Dec 2025 10:04:16 -0600 Subject: [PATCH] to uppercase --- src/components/AgregarEquipo.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/components/AgregarEquipo.tsx b/src/components/AgregarEquipo.tsx index a6ca8f7..7f1f527 100644 --- a/src/components/AgregarEquipo.tsx +++ b/src/components/AgregarEquipo.tsx @@ -454,7 +454,9 @@ export default function Page() { type="text" placeholder="Ingresa modelo" value={formData.modelo} - onChange={(e) => handleInputChange("modelo", e.target.value)} + onChange={(e) => + handleInputChange("modelo", e.target.value.toUpperCase()) + } />