diff options
author | David Yip <yipdw@member.fsf.org> | 2018-01-18 09:13:07 -0600 |
---|---|---|
committer | David Yip <yipdw@member.fsf.org> | 2018-01-18 09:13:07 -0600 |
commit | 708ec07e27dd02d03f2d155bcc61ae8de4c10c4a (patch) | |
tree | ce95aed1d6892e4387cbdd613ea67f61446a0a18 /app/javascript/flavours/glitch/features/account | |
parent | aa2bf07281ba1e41c9e32a760684c15081524a7c (diff) |
Style fixes to make eslint happier, hopefully
Diffstat (limited to 'app/javascript/flavours/glitch/features/account')
-rw-r--r-- | app/javascript/flavours/glitch/features/account/components/header.js | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/app/javascript/flavours/glitch/features/account/components/header.js b/app/javascript/flavours/glitch/features/account/components/header.js index 1a258c7e4..767e4da47 100644 --- a/app/javascript/flavours/glitch/features/account/components/header.js +++ b/app/javascript/flavours/glitch/features/account/components/header.js @@ -64,11 +64,11 @@ export default class Header extends ImmutablePureComponent { <div className='account__header' style={{ backgroundImage: `url(${account.get('header')})` }}> <div> <a - href={account.get('url')} - className='account__header__avatar' - role='presentation' - target='_blank' - rel='noopener' + href={account.get('url')} + className='account__header__avatar' + role='presentation' + target='_blank' + rel='noopener' > <Avatar account={account} size={90} /> </a> |