mirror of
https://github.com/element-hq/element-web
synced 2024-11-28 20:38:55 +03:00
Merge pull request #4145 from MarcoZehe/ImproveUserListA11y
Hide user avatars from screen readers in group and room user lists.
This commit is contained in:
commit
70bc405b6f
3 changed files with 4 additions and 2 deletions
|
@ -60,6 +60,7 @@ export default createReactClass({
|
||||||
|
|
||||||
const av = (
|
const av = (
|
||||||
<BaseAvatar
|
<BaseAvatar
|
||||||
|
aria-hidden="true"
|
||||||
name={this.props.member.displayname || this.props.member.userId}
|
name={this.props.member.displayname || this.props.member.userId}
|
||||||
idName={this.props.member.userId}
|
idName={this.props.member.userId}
|
||||||
width={36} height={36}
|
width={36} height={36}
|
||||||
|
|
|
@ -175,7 +175,8 @@ const EntityTile = createReactClass({
|
||||||
|
|
||||||
const BaseAvatar = sdk.getComponent('avatars.BaseAvatar');
|
const BaseAvatar = sdk.getComponent('avatars.BaseAvatar');
|
||||||
|
|
||||||
const av = this.props.avatarJsx || <BaseAvatar name={this.props.name} width={36} height={36} />;
|
const av = this.props.avatarJsx ||
|
||||||
|
<BaseAvatar name={this.props.name} width={36} height={36} aria-hidden="true" />;
|
||||||
|
|
||||||
// The wrapping div is required to make the magic mouse listener work, for some reason.
|
// The wrapping div is required to make the magic mouse listener work, for some reason.
|
||||||
return (
|
return (
|
||||||
|
|
|
@ -208,7 +208,7 @@ export default createReactClass({
|
||||||
}
|
}
|
||||||
|
|
||||||
const av = (
|
const av = (
|
||||||
<MemberAvatar member={member} width={36} height={36} />
|
<MemberAvatar member={member} width={36} height={36} aria-hidden="true" />
|
||||||
);
|
);
|
||||||
|
|
||||||
if (member.user) {
|
if (member.user) {
|
||||||
|
|
Loading…
Reference in a new issue