about summary refs log tree commit diff
path: root/app/assets/javascripts/components/features/account
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2016-09-23 21:59:21 +0200
committerEugen Rochko <eugen@zeonfederated.com>2016-09-23 21:59:21 +0200
commit95d72b2249e1313182d4ee8b3dbf62666d716585 (patch)
tree79c1c94fe877c74d8ddb9821b44a60168a850f0e /app/assets/javascripts/components/features/account
parent0c75ce11229e65023cb91022fedf75acf3f8f062 (diff)
Temporarily link "settings" to the static version of the form
Diffstat (limited to 'app/assets/javascripts/components/features/account')
-rw-r--r--app/assets/javascripts/components/features/account/components/action_bar.jsx5
1 files changed, 2 insertions, 3 deletions
diff --git a/app/assets/javascripts/components/features/account/components/action_bar.jsx b/app/assets/javascripts/components/features/account/components/action_bar.jsx
index 3522e2e7c..9fa9fff3d 100644
--- a/app/assets/javascripts/components/features/account/components/action_bar.jsx
+++ b/app/assets/javascripts/components/features/account/components/action_bar.jsx
@@ -29,14 +29,13 @@ const ActionBar = React.createClass({
       }
 
       if (account.getIn(['relationship', 'followed_by'])) {
-        followBack = 'Follows you';
+        followBack = 'Follows you!';
       }
     }
 
     return (
       <div style={{ borderTop: '1px solid #363c4b', borderBottom: '1px solid #363c4b', padding: '10px', lineHeight: '36px' }}>
-        {actionButton}
-        {followBack}
+        {actionButton} {followBack}
       </div>
     );
   },