Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

adjusted the person table column to reflect full name rather than the… #3804

Merged
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