Merge pull request #1273 from matrix-org/t3chguy/hide_chevron_memberlist_3pid_notarget

suppressOnHover for member entity tiles which have no onClick
pull/21833/head
Matthew Hodgson 2017-09-17 23:19:35 +01:00 committed by GitHub
commit 09e6ea00c5
1 changed files with 1 additions and 1 deletions

View File

@ -333,7 +333,7 @@ module.exports = React.createClass({
return;
}
memberList.push(
<EntityTile key={e.getStateKey()} name={e.getContent().display_name} />
<EntityTile key={e.getStateKey()} name={e.getContent().display_name} suppressOnHover={true} />
);
});
}