mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2024-11-27 01:25:52 -05:00
use recipient thumbnail, not actor for manager activity
Fixes an issue where the thumbnail mismatches the username presented
This commit is contained in:
parent
2034edb82f
commit
98cbfd638f
1 changed files with 1 additions and 1 deletions
|
@ -51,7 +51,7 @@ var Activity = React.createClass({
|
|||
return (
|
||||
<li key={item.pk}>
|
||||
<a href={actorProfileUrl}>
|
||||
<img src={item.actor.thumbnail_url} width="34" height="34" alt="" />
|
||||
<img src={item.recipient.thumbnail_url} width="34" height="34" alt="" />
|
||||
<p dangerouslySetInnerHTML={{__html: activityMessageHTML}}></p>
|
||||
<p>
|
||||
<span className="stamp">
|
||||
|
|
Loading…
Reference in a new issue