iptdevs-design-system 2.7.93 → 2.7.101
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-three/cod-form-step-three.component.mjs +10 -8
- package/fesm2015/iptdevs-design-system.mjs +9 -7
- package/fesm2015/iptdevs-design-system.mjs.map +1 -1
- package/fesm2020/iptdevs-design-system.mjs +9 -7
- package/fesm2020/iptdevs-design-system.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -3257,13 +3257,15 @@ class CodFormStepThreeComponent extends CodFormSteps {
|
|
|
3257
3257
|
this.startLocalStorageWork();
|
|
3258
3258
|
this.validateErrors();
|
|
3259
3259
|
if (changes['initialData']) {
|
|
3260
|
-
if (this.initialData
|
|
3261
|
-
|
|
3262
|
-
|
|
3263
|
-
|
|
3264
|
-
|
|
3265
|
-
|
|
3266
|
-
|
|
3260
|
+
if (this.initialData != null) {
|
|
3261
|
+
if (this.initialData.parent != null) {
|
|
3262
|
+
console.log(this.initialData.parent);
|
|
3263
|
+
this.selectNeedAtendant(1);
|
|
3264
|
+
this.setValueStepThree();
|
|
3265
|
+
}
|
|
3266
|
+
else {
|
|
3267
|
+
console.log('No tiene acudiente');
|
|
3268
|
+
}
|
|
3267
3269
|
}
|
|
3268
3270
|
}
|
|
3269
3271
|
}
|