mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2025-02-17 00:21:20 -05:00
fix commentee assignment
This commit is contained in:
parent
e9f54b3fd3
commit
d7fe43fad7
2 changed files with 2 additions and 2 deletions
|
@ -62,7 +62,7 @@ var CommentMessage = injectIntl(React.createClass({
|
|||
linkText = this.props.intl.formatMessage({
|
||||
id: 'messages.profileOther',
|
||||
values: {
|
||||
username: this.props.objectId
|
||||
username: this.props.objectTitle
|
||||
}
|
||||
});
|
||||
}
|
||||
|
|
|
@ -84,7 +84,7 @@ var SocialMessagesList = React.createClass({
|
|||
commentText={message.comment_fragment}
|
||||
commentDateTime={message.datetime_created}
|
||||
objectTitle={message.comment_obj_title}
|
||||
commentee={message.commentee}
|
||||
commentee={message.commentee_username}
|
||||
/>;
|
||||
case 'curatorinvite':
|
||||
return <CuratorInviteMessage
|
||||
|
|
Loading…
Reference in a new issue