Browse Source
Bugfix/track expression of access in header component (#7589)
Fix track expression of access
pull/7590/head
Thomas Kaul
1 week ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
1 additions and
1 deletions
-
apps/client/src/app/components/header/header.component.html
|
|
@ -217,7 +217,7 @@ |
|
|
<span i18n>Me</span> |
|
|
<span i18n>Me</span> |
|
|
</span> |
|
|
</span> |
|
|
</button> |
|
|
</button> |
|
|
@for (accessItem of user()?.access; track accessItem) { |
|
|
@for (accessItem of user()?.access; track accessItem.id) { |
|
|
<button mat-menu-item (click)="impersonateAccount(accessItem.id)"> |
|
|
<button mat-menu-item (click)="impersonateAccount(accessItem.id)"> |
|
|
<span class="align-items-center d-flex"> |
|
|
<span class="align-items-center d-flex"> |
|
|
<ion-icon |
|
|
<ion-icon |
|
|
|