ngx-wapp-components 3.0.23 → 3.0.24-alpha.1

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.
@@ -6646,6 +6646,7 @@ class WImageFileUploaderComponent {
6646
6646
  onCustomUploadMultiMode(event) {
6647
6647
  if (this.allowMultipleImages == true) {
6648
6648
  event.currentFiles.forEach((file, index) => {
6649
+ console.log(event);
6649
6650
  let foundIt = this.cropperImages.find(f => f.name == file.name);
6650
6651
  let foundItAlreadyUploaded = this.imagesAlreadyUploaded.find(f => f.name == file.name);
6651
6652
  if (event.currentFiles.length == 0) {
@@ -6655,6 +6656,7 @@ class WImageFileUploaderComponent {
6655
6656
  this.openModalCropper(file, event.originalEvent);
6656
6657
  }
6657
6658
  });
6659
+ this.fileUpload.files = [];
6658
6660
  }
6659
6661
  else {
6660
6662
  this.openModalCropper(event.currentFiles[0], event.originalEvent);