Browse Source

Make clicking on avatar open public profile in new tab (#10387)

pull/4/head
Aditoo17 5 years ago
committed by Eugen Rochko
parent
commit
6f6abc369f
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      app/javascript/mastodon/features/account/components/header.js

+ 1
- 1
app/javascript/mastodon/features/account/components/header.js View File

@ -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>

Loading…
Cancel
Save