iptdevs-design-system 3.1.225 → 3.1.227
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.
- package/esm2020/lib/cod/steps/cod-form-step-one/cod-form-step-one.component.mjs +4 -4
- package/fesm2015/iptdevs-design-system.mjs +3 -3
- package/fesm2015/iptdevs-design-system.mjs.map +1 -1
- package/fesm2020/iptdevs-design-system.mjs +3 -3
- package/fesm2020/iptdevs-design-system.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -3164,8 +3164,8 @@ class CodFormStepOneComponent extends CodFormSteps {
|
|
|
3164
3164
|
this.codFormStepOne.controls['course_type'].setValue(this.initialData.course_type.code);
|
|
3165
3165
|
this.codFormStepOne.controls['agreement_by_category'].setValue(this.initialData.agreement.code);
|
|
3166
3166
|
this.codFormStepOne.controls['english_level'].setValue(this.initialData.english_level.code);
|
|
3167
|
-
this.codFormStepOne.controls['availible_courses'].setValue(this.initialData.
|
|
3168
|
-
this.codFormStepOne.controls['course_modality'].setValue(this.initialData.
|
|
3167
|
+
this.codFormStepOne.controls['availible_courses'].setValue(this.initialData.code);
|
|
3168
|
+
this.codFormStepOne.controls['course_modality'].setValue(this.initialData.course_modality.code);
|
|
3169
3169
|
}
|
|
3170
3170
|
setDataFromEditCodHistory() {
|
|
3171
3171
|
this.codFormStepOne.controls['academic_plan'].setValue(this.dataPreviusCodData.course_type.academic_plan.code);
|
|
@@ -3173,7 +3173,7 @@ class CodFormStepOneComponent extends CodFormSteps {
|
|
|
3173
3173
|
this.codFormStepOne.controls['agreement_by_category'].setValue(this.dataPreviusCodData.agreement.code);
|
|
3174
3174
|
this.codFormStepOne.controls['english_level'].setValue(this.dataPreviusCodData.english_level.code);
|
|
3175
3175
|
this.codFormStepOne.controls['availible_courses'].setValue(this.dataPreviusCodData.course.code);
|
|
3176
|
-
this.codFormStepOne.controls['course_modality'].setValue(this.dataPreviusCodData.course.course_modality
|
|
3176
|
+
this.codFormStepOne.controls['course_modality'].setValue(this.dataPreviusCodData.course.course_modality);
|
|
3177
3177
|
}
|
|
3178
3178
|
startLocalStorageWork() {
|
|
3179
3179
|
this.controls.forEach(control => {
|