diff options
author | Eugen <eugen@zeonfederated.com> | 2017-04-11 22:53:58 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-11 22:53:58 +0200 |
commit | b22b2cbfacdaef2441d14f401c95863d8ca2e66c (patch) | |
tree | 0fe5d26908e2ba5cea36a7698d06e4fdcfc52021 /app/assets/javascripts/components/features/follow_requests | |
parent | 2f2b84bfbbfa21a09e03dca05e159aadb70d2232 (diff) |
Fix #1491 - Fix broken notifications, broken Link header parsing for exclude_types (#1548)
Diffstat (limited to 'app/assets/javascripts/components/features/follow_requests')
-rw-r--r-- | app/assets/javascripts/components/features/follow_requests/components/account_authorize.jsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/assets/javascripts/components/features/follow_requests/components/account_authorize.jsx b/app/assets/javascripts/components/features/follow_requests/components/account_authorize.jsx index 9c713287c..1939eba65 100644 --- a/app/assets/javascripts/components/features/follow_requests/components/account_authorize.jsx +++ b/app/assets/javascripts/components/features/follow_requests/components/account_authorize.jsx @@ -33,7 +33,7 @@ const AccountAuthorize = ({ intl, account, onAuthorize, onReject }) => { <div> <div style={outerStyle}> <Permalink href={account.get('url')} to={`/accounts/${account.get('id')}`} className='detailed-status__display-name' style={{ display: 'block', overflow: 'hidden', marginBottom: '15px' }}> - <div style={{ float: 'left', marginRight: '10px' }}><Avatar src={account.get('avatar')} staticSrc={status.getIn(['account', 'avatar_static'])} size={48} /></div> + <div style={{ float: 'left', marginRight: '10px' }}><Avatar src={account.get('avatar')} staticSrc={account.get('avatar_static')} size={48} /></div> <DisplayName account={account} /> </Permalink> |