ngx-wapp-components 3.0.37 → 3.0.38

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.
@@ -6683,7 +6683,7 @@ class WImageFileUploaderComponent {
6683
6683
  return obj[prop];
6684
6684
  }
6685
6685
  onCustomUploadSingleMode(event) {
6686
- if (this.fileUpload.msgs && this.fileUpload.msgs.length > 0) {
6686
+ if (this.fileUpload?.msgs && this.fileUpload.msgs.length > 0) {
6687
6687
  setTimeout(() => {
6688
6688
  this.fileUpload.msgs = [];
6689
6689
  }, this.timelife);
@@ -6790,7 +6790,7 @@ class WImageFileUploaderComponent {
6790
6790
  }
6791
6791
  }
6792
6792
  onCustomUploadMultiMode(event) {
6793
- if (this.fileUpload.msgs && this.fileUpload.msgs.length > 0) {
6793
+ if (this.fileUpload?.msgs && this.fileUpload.msgs.length > 0) {
6794
6794
  setTimeout(() => {
6795
6795
  this.fileUpload.msgs = [];
6796
6796
  }, this.timelife);