Fixed several issues with policy and logins

This commit is contained in:
Tom
2024-10-31 18:49:52 +00:00
parent 2bde8b850a
commit 44df0daddf
5 changed files with 33 additions and 26 deletions

View File

@ -9,7 +9,7 @@
<mat-label>User to impersonate</mat-label>
<mat-select (selectionChange)="onChange($event)" [(value)]="impersonated">
<mat-option>{{getUsername()}}</mat-option>
@for (user of users; track user) {
@for (user of users; track user.id) {
<mat-option [value]="user.id">{{ user.name }}</mat-option>
}
</mat-select>