diff --git a/src/app/styles/base/globales.scss b/src/app/styles/base/globales.scss index 2dc8bd4..e49d5ee 100644 --- a/src/app/styles/base/globales.scss +++ b/src/app/styles/base/globales.scss @@ -97,7 +97,6 @@ select { //overwrite css toaster [data-rht-toaster] { bottom: auto !important; - right: auto !important; max-width: 100% !important; width: auto !important; pointer-events: none !important; diff --git a/src/components/AgregarEquipo.tsx b/src/components/AgregarEquipo.tsx index 7f1f527..fc6ab56 100644 --- a/src/components/AgregarEquipo.tsx +++ b/src/components/AgregarEquipo.tsx @@ -430,7 +430,9 @@ export default function Page() { type="text" placeholder="Ingresa serie" value={formData.serie} - onChange={(e) => handleInputChange("serie", e.target.value)} + onChange={(e) => + handleInputChange("serie", e.target.value.toUpperCase()) + } />