Skip to content

Commit

Permalink
fix: suggested people aria labels (#2335)
Browse files Browse the repository at this point in the history
  • Loading branch information
gavinbarron authored May 22, 2023
1 parent c2588e8 commit 071f3d5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -956,7 +956,7 @@ export class MgtPeoplePicker extends MgtTemplatedComponent {
person => person.id,
person => {
const lineTwo = person.jobTitle || (person as User).mail;
const ariaLabel = `${this.strings.suggestedContact} ${person.displayName} ${lineTwo ?? ''}`;
const ariaLabel = `${person.displayName} ${lineTwo ?? ''}`;
return html`
<li
id="${person.id}"
Expand Down

0 comments on commit 071f3d5

Please sign in to comment.