diff options
Diffstat (limited to 'vnext/src')
-rw-r--r-- | vnext/src/components/Thread.js | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/vnext/src/components/Thread.js b/vnext/src/components/Thread.js index 7a1b48f3..4dbd1b5d 100644 --- a/vnext/src/components/Thread.js +++ b/vnext/src/components/Thread.js @@ -99,15 +99,9 @@ export default class Thread extends React.Component { <div className="msg-header"> <Avatar user={msg.user}> <div className="msg-ts"> - <a href={`/${msg.user.uname}/${msg.mid}`}> - <time dateTime={msg.timestamp} - title={moment.utc(msg.timestamp).local().format('lll')}> - {moment.utc(msg.timestamp).fromNow()} - </time> - </a> {msg.replyto > 0 && ( - <a href={`#${msg.replyto}`}> in reply to {msg.to.uname} </a> + <a href={`#${msg.replyto}`} className="info-avatar"><img src={msg.to.avatar}/> {msg.to.uname} </a> )} </div> </Avatar> |