Skip to content

Commit

Permalink
Merge pull request #1606 from CSCfi/CSCTTV-3026
Browse files Browse the repository at this point in the history
Cscttv 3026
  • Loading branch information
konolak authored Dec 14, 2022
2 parents 3381a73 + c35913f commit 7345d72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/portal/models/person/person.model.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ export class PersonAdapter implements Adapter<Person> {
names.lastName
)}, ${names.firstNames
.split(' ')
.map((name) => capitalizeFirstLetter(name))}`;
.map((name) => capitalizeFirstLetter(name)).join(' ')}`;

const contact = this.contactAdapter.adapt(data.personal);

Expand Down

0 comments on commit 7345d72

Please sign in to comment.