From c22a80abd3b5dbf67481df0283d804555e6b4a36 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Fri, 8 Nov 2024 00:19:05 -0800 Subject: [PATCH] Fix: correctly track task id in list for change detection (#8230) --- src-ui/src/app/components/admin/tasks/tasks.component.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src-ui/src/app/components/admin/tasks/tasks.component.html b/src-ui/src/app/components/admin/tasks/tasks.component.html index 4178bb2c8..3d40c7897 100644 --- a/src-ui/src/app/components/admin/tasks/tasks.component.html +++ b/src-ui/src/app/components/admin/tasks/tasks.component.html @@ -43,7 +43,7 @@ - @for (task of tasks | slice: (page-1) * pageSize : page * pageSize; track task) { + @for (task of tasks | slice: (page-1) * pageSize : page * pageSize; track task.id) {