Skip to content
This repository has been archived by the owner on Oct 1, 2019. It is now read-only.

Commit

Permalink
Add Bio section to UserDetails
Browse files Browse the repository at this point in the history
  • Loading branch information
voidxnull committed Nov 13, 2016
1 parent f49d828 commit 243caa5
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/components/tools/user-details.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,11 @@ export default function UserDetails({ current_user, following, triggers, user })
<div className="tools_details__description">
{fullName}
</div>
{user.getIn(['more', 'bio']) &&
<div className="tools_details__description">
{user.getIn(['more', 'bio'])}
</div>
}
<FollowButton
active_user={current_user}
following={following}
Expand Down

0 comments on commit 243caa5

Please sign in to comment.