diff options
Diffstat (limited to 'app/assets/javascripts/components/features/followers')
-rw-r--r-- | app/assets/javascripts/components/features/followers/components/account.jsx | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/app/assets/javascripts/components/features/followers/components/account.jsx b/app/assets/javascripts/components/features/followers/components/account.jsx index 27f34c477..9d863a1ae 100644 --- a/app/assets/javascripts/components/features/followers/components/account.jsx +++ b/app/assets/javascripts/components/features/followers/components/account.jsx @@ -38,6 +38,12 @@ const Account = React.createClass({ withNote: React.PropTypes.bool }, + getDefaultProps () { + return { + withNote: true + }; + }, + mixins: [PureRenderMixin], handleFollow () { @@ -45,7 +51,7 @@ const Account = React.createClass({ }, render () { - const { account, me } = this.props; + const { account, me, withNote } = this.props; if (!account) { return <div />; @@ -53,7 +59,7 @@ const Account = React.createClass({ let note, buttons; - if (account.get('note').length > 0) { + if (account.get('note').length > 0 && withNote) { note = <div style={noteStyle}>{account.get('note')}</div>; } |