refactor: update file-uploading-list template to track file IDs

- Modified the file-uploading-list.component.html to track file IDs instead of file objects for improved performance and clarity in rendering.
This commit is contained in:
Denys Vuika
2026-02-26 10:51:43 +00:00
parent 620580a851
commit 06c1e6c594
@@ -1,5 +1,5 @@
<div class="upload-list">
@for (file of files; track file) {
@for (file of files; track file.id) {
<ng-template
[ngTemplateOutlet]="template"
[ngTemplateOutletContext]="{ $implicit: file }" />