fix template loop references

This commit is contained in:
2026-03-15 13:33:36 +01:00
parent 9bbabb18aa
commit e4f829d0c8
11 changed files with 14 additions and 14 deletions

View File

@@ -1,5 +1,5 @@
<app-card heading="registrierte Benutzer">
@for (user of users$ | async | sortBy: 'asc':'name'; track user) {
@for (user of users$ | async | sortBy: 'asc':'name'; track user.id) {
<app-user [user]="user"></app-user>
}
</app-card>