iptdevs-design-system 3.1.127 → 3.1.129

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.
@@ -3195,11 +3195,10 @@ class CodFormStepOneComponent extends CodFormSteps {
3195
3195
  agreement: this.codFormStepOne.controls['agreement_by_category'].value,
3196
3196
  course_type: this.codFormStepOne.controls['course_type'].value,
3197
3197
  };
3198
- this.courseService
3199
- .getAvailibleCourses(request_availibleCourses)
3200
- .subscribe((response) => {
3198
+ this.courseService.getAvailibleCourses(request_availibleCourses).subscribe((response) => {
3201
3199
  if (response.data) {
3202
3200
  let courses = response.data;
3201
+ console.log(response.data);
3203
3202
  this.hasAvailableCourse = true;
3204
3203
  courses.forEach(course => {
3205
3204
  let scheduleParts = course.course_schedule[0].split(" ");