I have a list of images in my page:
<img *ngFor="let picture of pictures" [src]="picture.path">
The problem is that, every time I remove a picture, the previous list is recreated and all the images are reloaded. How can I prevent it from reloading the images when I remove an item? Is there any alternative for the ngFor directive?