1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-14 19:02:33 +03:00

Update Pill.js

Commas are not semicolons
This commit is contained in:
David Baker
2018-10-04 10:34:34 +01:00
committed by GitHub
parent 1e5101aa0c
commit 8ceca3abe9

View File

@@ -234,7 +234,7 @@ const Pill = React.createClass({
if (member) {
userId = member.userId;
member.rawDisplayName = member.rawDisplayName || '';
linkText = member.rawDisplayName,
linkText = member.rawDisplayName;
if (this.props.shouldShowPillAvatar) {
avatar = <MemberAvatar member={member} width={16} height={16} />;
}