iptdevs-design-system 3.1.491 → 3.1.492

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.
@@ -6340,6 +6340,7 @@ class CodSelfFormStepOneComponent extends CodSelfManagedSteps {
6340
6340
  this.messageService = messageService;
6341
6341
  this.completed = new EventEmitter();
6342
6342
  this.genders = [];
6343
+ this.grades = [];
6343
6344
  this.errorMessage = 'Faltan campos por llenar.';
6344
6345
  this.controls = new CodSelfManagedControls().controls[0];
6345
6346
  this.visible = false;
@@ -6425,11 +6426,11 @@ class CodSelfFormStepOneComponent extends CodSelfManagedSteps {
6425
6426
  });
6426
6427
  this.parameterService.GetAllGradeEducation().pipe(map((response) => response.data)).subscribe((grades) => {
6427
6428
  grades.forEach(grade => {
6428
- let genderItem = {
6429
+ let gradesItems = {
6429
6430
  code: grade.code,
6430
6431
  name: grade.grade
6431
6432
  };
6432
- this.grades.push(genderItem);
6433
+ this.grades.push(gradesItems);
6433
6434
  // this.grade = response.data;
6434
6435
  });
6435
6436
  });