Skip to content

Commit

Permalink
adjusted the person table column to reflect full name rather than the…
Browse files Browse the repository at this point in the history
… known_as field (#3804)

Co-authored-by: raghuhmcts <[email protected]>
Co-authored-by: RiteshHMCTS <[email protected]>
  • Loading branch information
3 people committed Jul 22, 2024
1 parent 97962c9 commit dea5d99
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ export class TaskActionContainerComponent implements OnInit {
this.tasks[0].assigneeName = getAssigneeName(this.route.snapshot.data.taskAndCaseworkers.caseworkers, this.tasks[0].assignee);
if (!this.tasks[0].assigneeName) {
this.roleService.getCaseRolesUserDetails([this.tasks[0].assignee], this.tasks[0].jurisdiction).subscribe((judicialDetails) => {
this.tasks[0].assigneeName = judicialDetails[0].known_as;
this.tasks[0].assigneeName = judicialDetails[0].full_name;
});
}
}
Expand Down

0 comments on commit dea5d99

Please sign in to comment.