iptdevs-design-system 2.7.50 → 2.7.51

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2903,7 +2903,7 @@ class CodFormStepOneComponent extends CodFormSteps {
2903
2903
  courses.forEach(course => {
2904
2904
  this.availibleCourses.push({
2905
2905
  code: course.code,
2906
- name: `Curso ${course.modality.code === 1 ? 'Presencial' : 'Virtual'} ${course.course_type.name} (${course.english_level}) - Teacher ${course.teacher}, Fecha de inicio: ${course.to_start}`
2906
+ name: `Curso ${course.modality === 1 ? 'Presencial' : 'Virtual'} ${course.course_type.name} (${course.english_level}) - Teacher ${course.teacher}, Fecha de inicio: ${course.to_start}`
2907
2907
  });
2908
2908
  });
2909
2909
  }