diff options
Diffstat (limited to 'app/assets')
-rw-r--r-- | app/assets/javascripts/components/components/status.jsx | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/app/assets/javascripts/components/components/status.jsx b/app/assets/javascripts/components/components/status.jsx index 9bbb02077..68c1efaad 100644 --- a/app/assets/javascripts/components/components/status.jsx +++ b/app/assets/javascripts/components/components/status.jsx @@ -6,11 +6,12 @@ const Status = React.createClass({ }, render: function() { - console.log(this.props.status.toJS()); + var content = { __html: this.props.status.get('content') }; return ( - <div style={{ height: '100px' }}> - {this.props.status.getIn(['account', 'username'])}: {this.props.status.get('content')} + <div style={{ padding: '5px' }}> + <div><strong>{this.props.status.getIn(['account', 'username'])}</strong></div> + <div dangerouslySetInnerHTML={content} /> </div> ); } |