about summary refs log tree commit diff
path: root/app/javascript/glitch
diff options
context:
space:
mode:
authoraschmitz <aschmitz@lardbucket.org>2017-11-09 08:41:10 -0600
committeraschmitz <aschmitz@lardbucket.org>2017-11-09 08:41:10 -0600
commit49445150202f0bdaae942b9ae1ba44802a1c22e9 (patch)
tree5d305bb395d7e61ec6b2f0e4b48229ebf216be8d /app/javascript/glitch
parent870d71b78be74b7fab4892a79a87aff39b1e2726 (diff)
"Show reblogs" per-follower UI/database changes
TODO:

* Tests (particularly for FollowRequests).
* Anything to respect the setting when putting reblogs in timelines.
Diffstat (limited to 'app/javascript/glitch')
-rw-r--r--app/javascript/glitch/components/account/header.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/javascript/glitch/components/account/header.js b/app/javascript/glitch/components/account/header.js
index f4a413aa3..c94fb0851 100644
--- a/app/javascript/glitch/components/account/header.js
+++ b/app/javascript/glitch/components/account/header.js
@@ -152,7 +152,7 @@ appropriate icon.
             <IconButton
               size={26}
               icon={following ? 'user-times' : 'user-plus'}
-              active={following}
+              active={following ? true : false}
               title={intl.formatMessage(following ? messages.unfollow : messages.follow)}
               onClick={this.props.onFollow}
             />