Compare commits
9 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 53df6eb3b9 | |||
| 06fbb32734 | |||
| ddc2e0466e | |||
| 44d5c8c60c | |||
| 9d20a50674 | |||
| 7256791a25 | |||
| 2b86b0e02c | |||
| 415075a959 | |||
| a3a7fce6bf |
@@ -1,2 +1 @@
|
||||
REACT_APP_API_URL=https://venus.acatlan.unam.mx/directorio_test
|
||||
REACT_APP_PORT=3001
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
<component name="InspectionProjectProfileManager">
|
||||
<profile version="1.0">
|
||||
<option name="myName" value="Project Default" />
|
||||
<inspection_tool class="Eslint" enabled="true" level="WARNING" enabled_by_default="true" />
|
||||
</profile>
|
||||
</component>
|
||||
+1
-1
@@ -17,7 +17,7 @@
|
||||
"web-vitals": "^2.1.4"
|
||||
},
|
||||
"scripts": {
|
||||
"start": "set PORT=3001 && react-scripts start",
|
||||
"start": "set PORT=3226 && react-scripts start",
|
||||
"build": "react-scripts build",
|
||||
"test": "react-scripts test",
|
||||
"eject": "react-scripts eject"
|
||||
|
||||
@@ -7,11 +7,11 @@ const Header = () => {
|
||||
return (
|
||||
<header className="header">
|
||||
<a href="https://www.unam.mx/">
|
||||
<img className="logo" alt="Logo 1" src={logo1} />
|
||||
<img className="logo" alt="Logo 1" src={logo2} />
|
||||
</a>
|
||||
|
||||
<a href="https://www.acatlan.unam.mx/">
|
||||
<img className="logo" alt="Logo 2" src={logo2} />
|
||||
<img className="logo" alt="Logo 2" src={logo1} />
|
||||
</a>
|
||||
</header>
|
||||
);
|
||||
|
||||
@@ -123,23 +123,23 @@ const PerfilProfesor = () => {
|
||||
</div>
|
||||
<ul>
|
||||
<li>
|
||||
<strong>Ubicación:</strong>
|
||||
<strong>Ubicación: </strong>
|
||||
{profesor.ubicacion ? profesor.ubicacion : "NO ubicado"}
|
||||
</li>
|
||||
<li>
|
||||
<strong>Correo:</strong>
|
||||
<strong>Correo: </strong>
|
||||
{profesor.correo_pcp ? profesor.correo_pcp : "No ubicado"}
|
||||
</li>
|
||||
<li>
|
||||
<strong>Teléfono de oficina:</strong>
|
||||
<strong>Teléfono de oficina: </strong>
|
||||
{profesor.tel_oficina ? profesor.tel_oficina : "No ubicado"}
|
||||
</li>
|
||||
<li>
|
||||
<strong>Extensión:</strong>
|
||||
<strong>Extensión: </strong>
|
||||
{profesor.extension ? profesor.extension : "No ubicado"}
|
||||
</li>
|
||||
<li>
|
||||
<strong>Edificio:</strong>
|
||||
<strong>Edificio: </strong>
|
||||
{edificioProfesor ? edificioProfesor.edificio : "No ubicado"}
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
Reference in New Issue
Block a user