diff options
author | David Yip <yipdw@member.fsf.org> | 2018-03-29 09:26:31 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-29 09:26:31 -0500 |
commit | 1bd12cf8ebaebfac440bcefd241b564997272ffb (patch) | |
tree | 61889ce4f92f8aa107eb92f053f119cfdbd07ea1 /app/javascript/flavours/glitch/components | |
parent | 4e45954280390f90dcacc2fd0a33bf75114b38d6 (diff) | |
parent | b5948044b31c548de15337dcdca35b4c894224c0 (diff) |
Merge pull request #404 from ThibG/glitch-soc/features/moved-note
[Untested] [Glitch] Profile redirect notes
Diffstat (limited to 'app/javascript/flavours/glitch/components')
-rw-r--r-- | app/javascript/flavours/glitch/components/account.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/javascript/flavours/glitch/components/account.js b/app/javascript/flavours/glitch/components/account.js index df17f1897..80f20b8ad 100644 --- a/app/javascript/flavours/glitch/components/account.js +++ b/app/javascript/flavours/glitch/components/account.js @@ -99,7 +99,7 @@ export default class Account extends ImmutablePureComponent { {hidingNotificationsButton} </Fragment> ); - } else if (!account.get('moved')) { + } else if (!account.get('moved') || following) { buttons = <IconButton icon={following ? 'user-times' : 'user-plus'} title={intl.formatMessage(following ? messages.unfollow : messages.follow)} onClick={this.handleFollow} active={following} />; } } |