Reblogs fixed

This commit is contained in:
Eugen Rochko
2016-09-01 14:12:11 +02:00
parent 595c8dda60
commit c249ceb10c
8 changed files with 51 additions and 7 deletions

View File

@@ -0,0 +1,19 @@
import ImmutablePropTypes from 'react-immutable-proptypes';
const DisplayName = React.createClass({
propTypes: {
account: ImmutablePropTypes.map.isRequired
},
render () {
return (
<span style={{ display: 'block', maxWidth: '100%', overflow: 'hidden', whiteSpace: 'nowrap', textOverflow: 'ellipsis' }}>
<strong style={{ fontWeight: 'bold' }}>{this.props.account.get('display_name')}</strong> <span style={{ fontSize: '14px' }}>@{this.props.account.get('acct')}</span>
</span>
);
}
});
export default DisplayName;