Skip to content

Commit 3fe9cf7

Browse files
committed
fix error with only showing the first selected task in all task-cards
1 parent 51326fc commit 3fe9cf7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/app/matrix/detail/detail.component.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ export class DetailComponent implements OnInit, OnDestroy {
4949
}
5050

5151
trackByFn(index: any, item: Task) {
52-
return index;
52+
return item.id;
5353
}
5454

5555
private subscribeToTaskHistory(): void {

0 commit comments

Comments
 (0)