posts avatar size change

This commit is contained in:
feruz 2019-12-16 15:53:50 +02:00
parent dfd26867a0
commit 89f7654400
3 changed files with 3 additions and 3 deletions
src/components
postCard/view
postListItem/view
postView/view

View File

@ -102,7 +102,7 @@ class PostCardView extends Component {
name={get(content, 'author')} name={get(content, 'author')}
profileOnPress={this._handleOnUserPress} profileOnPress={this._handleOnUserPress}
reputation={get(content, 'author_reputation')} reputation={get(content, 'author_reputation')}
size={32} size={36}
tag={content.category} tag={content.category}
rebloggedBy={rebloggedBy} rebloggedBy={rebloggedBy}
isPromoted={get(content, 'is_promoted')} isPromoted={get(content, 'is_promoted')}

View File

@ -57,7 +57,7 @@ class PostListItemView extends Component {
date={isFormatedDate ? created : getTimeFromNow(created, true)} date={isFormatedDate ? created : getTimeFromNow(created, true)}
name={username} name={username}
reputation={reputation} reputation={reputation}
size={32} size={36}
tag={mainTag} tag={mainTag}
/> />
<IconButton <IconButton

View File

@ -202,7 +202,7 @@ class PostDisplayView extends PureComponent {
currentAccountUsername={name} currentAccountUsername={name}
reputation={post.author_reputation} reputation={post.author_reputation}
tag={post.category} tag={post.category}
size={16} size={36}
/> />
<PostBody body={post.body} /> <PostBody body={post.body} />
<View style={styles.footer}> <View style={styles.footer}>