Skip to content

Commit

Permalink
Solucion error materias sin profesores
Browse files Browse the repository at this point in the history
  • Loading branch information
ddi4z authored Nov 29, 2024
1 parent f7f66b0 commit 215a52c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/services/fetcher.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,12 @@ function cargarHorariosSeccion(seccion: Seccion, horarios: HorarioAPI[]) {
@param profesores Los profesores a cargar
*/
function cargarProfesoresSeccion(seccion: Seccion, profesores: ProfesorAPI[]) {
if (profesores.length === 0) {
seccion.profesores.push(new Profesor("NO DEFINIDO"));
}
for (let profesor of profesores) {
seccion.profesores.push(new Profesor(profesor.name));
const nombreProfesor = profesor.name || "NO DEFINIDO";
seccion.profesores.push(new Profesor(nombreProfesor));
}
}

Expand Down

0 comments on commit 215a52c

Please sign in to comment.