@c8y/ngx-components 1018.0.45 → 1018.0.47

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.
@@ -20437,8 +20437,10 @@ class FilePickerNewComponent {
20437
20437
  this.afterValueChanged();
20438
20438
  }
20439
20439
  filesSelected(ev) {
20440
- const files = Array.from(ev.target.files);
20440
+ const inputElement = ev.target;
20441
+ const files = Array.from(inputElement.files);
20441
20442
  this.droppedFiles.push(...files);
20443
+ inputElement.value = null;
20442
20444
  this.afterValueChanged();
20443
20445
  }
20444
20446
  deleteAt(index) {