iptdevs-design-system 2.7.162 → 2.7.163

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.
@@ -2256,6 +2256,7 @@ class CodDocumentsSectionComponent {
2256
2256
  // default:
2257
2257
  // break;
2258
2258
  // }
2259
+ this.value = true;
2259
2260
  this.documentState[typeDoc] = true;
2260
2261
  const fileCatched = event.target.files[0];
2261
2262
  let reader = new FileReader();
@@ -2296,6 +2297,7 @@ class CodDocumentsSectionComponent {
2296
2297
  clearDocStudent(typeDoc) {
2297
2298
  const control = this.documentsForm.controls[typeDoc];
2298
2299
  control.setValue(null);
2300
+ this.value = false;
2299
2301
  this.documentState[typeDoc] = false;
2300
2302
  }
2301
2303
  }