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.
@@ -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.parent != null) {
3261
- console.log(this.initialData.parent);
3262
- this.selectNeedAtendant(1);
3263
- this.setValueStepThree();
3264
- }
3265
- else {
3266
- console.log('No tiene acudiente');
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
  }