Merge branch 'Lino' into Develop
This commit is contained in:
@@ -566,7 +566,7 @@ export default function Editar() {
|
||||
value={formData.modelo}
|
||||
placeholder="Ingresa modelo"
|
||||
onChange={(e) =>
|
||||
setFormData({ ...formData, modelo: e.target.value })
|
||||
setFormData({ ...formData, modelo: e.target.value.toUpperCase() })
|
||||
}
|
||||
/>
|
||||
</div>
|
||||
@@ -765,7 +765,6 @@ export default function Editar() {
|
||||
placeholder="Selecciona una Adscripción"
|
||||
/>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
{/* Columna 3 */}
|
||||
|
||||
+11
-18
@@ -10,7 +10,7 @@ function Header() {
|
||||
const pathname = usePathname();
|
||||
|
||||
const publicNav = ["/escaner", "/agregarEquipo", "/editar", "/cambiarPass"];
|
||||
const privateNav = ["/equipoComputo", "/crearCuenta","/perifericos"];
|
||||
const privateNav = ["/equipoComputo", "/crearCuenta", "/perifericos"];
|
||||
|
||||
return (
|
||||
<header className={header.header}>
|
||||
@@ -23,25 +23,18 @@ function Header() {
|
||||
alignItems: "center",
|
||||
}}
|
||||
>
|
||||
<Image
|
||||
className={header.logo}
|
||||
src="/logo-blanco.png"
|
||||
alt="Logo FES"
|
||||
width={250}
|
||||
height={70}
|
||||
/>
|
||||
<div className={header.logoContainer}>
|
||||
<Image
|
||||
className={header.logo}
|
||||
src="/logo-blanco.png"
|
||||
alt="Logo FES"
|
||||
fill
|
||||
style={{ objectFit: "contain" }}
|
||||
/>
|
||||
</div>
|
||||
</Link>
|
||||
<div className={header.yellowPart}></div>
|
||||
<div
|
||||
style={{
|
||||
display: "flex",
|
||||
width: "100%",
|
||||
height: "100%",
|
||||
paddingLeft: "40px",
|
||||
maxHeight: "50%",
|
||||
alignItems: "end",
|
||||
}}
|
||||
>
|
||||
<div className={header.containerBarNav}>
|
||||
{publicNav.includes(pathname) && <BarNavigation />}
|
||||
{privateNav.includes(pathname) && <BarNavigationAdmin />}
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user