iptdevs-design-system 3.1.862 → 3.1.864

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.
@@ -3910,7 +3910,7 @@ class CodFormStepOneComponent extends CodFormSteps {
3910
3910
  this.codFormStepOne.controls['course_type'].value != '');
3911
3911
  }
3912
3912
  getAvailibleCourses() {
3913
- if (this.isLoading) {
3913
+ if (this.isLoading && this.isRenovation == false) {
3914
3914
  return;
3915
3915
  }
3916
3916
  this.availibleCourses = [];
@@ -4169,9 +4169,6 @@ class CodFormStepTwoComponent extends CodFormSteps {
4169
4169
  this.selectCity(this.localStorageCOD.getCodFormData(2, 'city'));
4170
4170
  }
4171
4171
  selectCountry(country) {
4172
- console.log("Tipo de dato country", typeof country);
4173
- console.log("El dato", country);
4174
- // this.parametersAll?.State;
4175
4172
  const countryNumber = typeof country === 'string' ? parseInt(country, 10) : country;
4176
4173
  if (country != null) {
4177
4174
  this.codFormStepTwo.controls['country'].setValue(country);
@@ -5613,7 +5610,6 @@ class CodFormComponent {
5613
5610
  getParameters() {
5614
5611
  this.parameterService.getAllParametersCodForm().subscribe((response) => {
5615
5612
  this.parametersAll = response.data;
5616
- console.log("cod_form : ", this.parametersAll);
5617
5613
  });
5618
5614
  }
5619
5615
  }