Remove duplicate tooltip from user pills (#8512)

* Remove duplicate tooltip from user pills

* Fix test
This commit is contained in:
Robin
2022-05-06 17:26:32 -04:00
committed by GitHub
parent 99543a7858
commit 765a715fce
4 changed files with 4 additions and 8 deletions

View File

@@ -225,7 +225,7 @@ export default class Pill extends React.Component<IProps, IState> {
member.rawDisplayName = member.rawDisplayName || '';
linkText = member.rawDisplayName;
if (this.props.shouldShowPillAvatar) {
avatar = <MemberAvatar member={member} width={16} height={16} aria-hidden="true" />;
avatar = <MemberAvatar member={member} width={16} height={16} aria-hidden="true" hideTitle />;
}
pillClass = 'mx_UserPill';
href = null;