diff options
author | Aditoo17 <42938951+Aditoo17@users.noreply.github.com> | 2019-03-26 17:33:07 +0100 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2019-03-26 17:33:07 +0100 |
commit | 6f6abc369f113b174fe191cf562098fe01c2eeec (patch) | |
tree | b6640a3b6a143f0a6e81cc2687faa841b8c65c94 /app/javascript | |
parent | 0c1a05b281c2665b52a644d51b9b06c2756479a7 (diff) |
Make clicking on avatar open public profile in new tab (#10387)
Diffstat (limited to 'app/javascript')
-rw-r--r-- | app/javascript/mastodon/features/account/components/header.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/javascript/mastodon/features/account/components/header.js b/app/javascript/mastodon/features/account/components/header.js index 41e394585..fd7ad5e07 100644 --- a/app/javascript/mastodon/features/account/components/header.js +++ b/app/javascript/mastodon/features/account/components/header.js @@ -212,7 +212,7 @@ class Header extends ImmutablePureComponent { <div className='account__header__bar'> <div className='account__header__tabs'> - <a className='avatar' href={account.get('url')}> + <a className='avatar' href={account.get('url')} target='_blank'> <Avatar account={account} size={90} /> </a> |