1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-08 21:42:24 +03:00

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

suppressOnHover for member entity tiles which have no onClick
This commit is contained in:
Matthew Hodgson
2017-09-17 23:19:35 +01:00
committed by GitHub

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} />
);
});
}