From 06c1e6c594072f67e2ee319804fdcb4d496ab252 Mon Sep 17 00:00:00 2001 From: Denys Vuika Date: Thu, 26 Feb 2026 10:51:43 +0000 Subject: [PATCH] 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. --- .../lib/upload/components/file-uploading-list.component.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/content-services/src/lib/upload/components/file-uploading-list.component.html b/lib/content-services/src/lib/upload/components/file-uploading-list.component.html index fa4af49900..b4c63fa5ed 100644 --- a/lib/content-services/src/lib/upload/components/file-uploading-list.component.html +++ b/lib/content-services/src/lib/upload/components/file-uploading-list.component.html @@ -1,5 +1,5 @@
- @for (file of files; track file) { + @for (file of files; track file.id) {