diff options
author | David Yip <yipdw@member.fsf.org> | 2017-12-21 05:05:18 -0600 |
---|---|---|
committer | David Yip <yipdw@member.fsf.org> | 2017-12-21 05:25:16 -0600 |
commit | dbd5f8b9a5dd3b5686a250ca2c45fe257131b9eb (patch) | |
tree | e5f24dd05d3ed2ab7e17181a3b858276897f2b86 /app/javascript/flavours/glitch/features/account | |
parent | 00d1f8eea1b402f073836bb9b5b99d7207bc4892 (diff) |
Wrap <Avatar> in account header in a link to that account's page. Fixes #245.
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, 9 insertions, 1 deletions
diff --git a/app/javascript/flavours/glitch/features/account/components/header.js b/app/javascript/flavours/glitch/features/account/components/header.js index f5ecaae71..1a258c7e4 100644 --- a/app/javascript/flavours/glitch/features/account/components/header.js +++ b/app/javascript/flavours/glitch/features/account/components/header.js @@ -63,7 +63,15 @@ export default class Header extends ImmutablePureComponent { <div className='account__header__wrapper'> <div className='account__header' style={{ backgroundImage: `url(${account.get('header')})` }}> <div> - <Avatar account={account} size={90} /> + <a + href={account.get('url')} + className='account__header__avatar' + role='presentation' + target='_blank' + rel='noopener' + > + <Avatar account={account} size={90} /> + </a> <span className='account__header__display-name' dangerouslySetInnerHTML={{ __html: displayName }} /> <span className='account__header__username'>@{account.get('acct')} {account.get('locked') ? <i className='fa fa-lock' /> : null}</span> |