Hello,
So I got this piece of code where i cancel uploading if it doesn't fit my requirements
(selected)="onSelectedItem($event)"
If file extension doesn't fit my allowed extensions I cancel action with args.cancel cause i don't want to enter "uploading" method. But even if i cancel action the uploader still imports the file in "files" array (this.uploader.files (picture below) ) and cause of this (I think) when i'm uploading the same image again onSelectedItem doesn't fire anymore, unless i upload the different one. I tried clearing with clearAll() method or reseting files array, but that did not work.