diff options
author | slice <ryaneft@gmail.com> | 2019-03-27 09:08:26 -0700 |
---|---|---|
committer | ThibG <thib@sitedethib.com> | 2019-03-28 19:56:40 +0100 |
commit | 6fdd829d8cdb148e8e4ffddb8ea5ac51ba28f250 (patch) | |
tree | 00a52f4a1019e54ff77362cbc7f0ad06a02ef783 /app/javascript/flavours/glitch/features/account | |
parent | 841d2c9f230c4d42658964137256efdcd68af672 (diff) |
[Glitch] Add rel='noopener' to redesigned profile column header avatar link
Port 73f5711fb8a6131f5906903dcea40a113a842669 to glitch-soc
Diffstat (limited to 'app/javascript/flavours/glitch/features/account')
-rw-r--r-- | app/javascript/flavours/glitch/features/account/components/header.js | 2 |
1 files changed, 1 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 4acaef26b..6a95d1cca 100644 --- a/app/javascript/flavours/glitch/features/account/components/header.js +++ b/app/javascript/flavours/glitch/features/account/components/header.js @@ -205,7 +205,7 @@ class Header extends ImmutablePureComponent { <div className='account__header__bar'> <div className='account__header__tabs'> - <a className='avatar' href={account.get('url')} target='_blank'> + <a className='avatar' href={account.get('url')} rel='noopener' target='_blank'> <Avatar account={account} size={90} /> </a> |