Skip to content

Commit

Permalink
DST-17537 Dropdowns empty and un-interactable on user when no ldap en…
Browse files Browse the repository at this point in the history
…try exists (#791)
  • Loading branch information
robertmccormackbconline authored Aug 2, 2024
1 parent b65f932 commit b6154c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/src/app/component/user/user.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ export class UserComponent implements OnInit {
}
}))
.subscribe((user: User) => {
this.user = user;
this.user = { groups: new Groups(), ...user }
this.addSelectableRoles(user.roles || []);
this.loaded = true;
this.existingHomeAreaCode = user.homeArea?.code;
Expand Down

0 comments on commit b6154c6

Please sign in to comment.