Temporarily link "settings" to the static version of the form

This commit is contained in:
Eugen Rochko 2016-09-23 21:59:21 +02:00
parent 0c75ce1122
commit 95d72b2249
2 changed files with 3 additions and 4 deletions

View file

@ -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>
);
},