diff options
author | Ondřej Hruška <ondra@ondrovo.com> | 2017-09-20 20:34:11 +0200 |
---|---|---|
committer | Ondřej Hruška <ondra@ondrovo.com> | 2017-09-20 20:34:11 +0200 |
commit | 36a35be2ad2ebd685987f0c9dac2d542edc94d9e (patch) | |
tree | 210b3948e39df773f3e51536211c62ed86846504 /app/javascript/glitch/components | |
parent | 769f62d96fb34ae83e9b8197bccbb775a8cc5a5c (diff) |
Appease Travis
Diffstat (limited to 'app/javascript/glitch/components')
-rw-r--r-- | app/javascript/glitch/components/status/header.js | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/app/javascript/glitch/components/status/header.js b/app/javascript/glitch/components/status/header.js index 7f12a05b4..f741950b1 100644 --- a/app/javascript/glitch/components/status/header.js +++ b/app/javascript/glitch/components/status/header.js @@ -97,13 +97,13 @@ export default class StatusHeader extends React.PureComponent { className='status__avatar' onClick={this.handleAccountClick} > - { - friend ? ( - <AvatarOverlay account={account} friend={friend} /> - ) : ( - <Avatar account={account} size={48} /> - ) - } + { + friend ? ( + <AvatarOverlay account={account} friend={friend} /> + ) : ( + <Avatar account={account} size={48} /> + ) + } </a> <a href={account.get('url')} |