mirror of
https://github.com/ecency/ecency-mobile.git
synced 2024-12-17 02:13:34 +03:00
Merge pull request #310 from esteemapp/bugfix/android-intl
Removed new number feature
This commit is contained in:
commit
ce9f39f632
@ -5,9 +5,6 @@ import { PostHeaderDescription } from '../../postElements';
|
|||||||
import { PostDropdown } from '../../postDropdown';
|
import { PostDropdown } from '../../postDropdown';
|
||||||
import { Icon } from '../../icon';
|
import { Icon } from '../../icon';
|
||||||
|
|
||||||
// Utils
|
|
||||||
import { makeCountFriendly } from '../../../utils/formatter';
|
|
||||||
|
|
||||||
// STEEM
|
// STEEM
|
||||||
import { Upvote } from '../../upvote';
|
import { Upvote } from '../../upvote';
|
||||||
// Styles
|
// Styles
|
||||||
@ -110,12 +107,12 @@ class PostCard extends Component {
|
|||||||
iconType="MaterialIcons"
|
iconType="MaterialIcons"
|
||||||
name="people"
|
name="people"
|
||||||
/>
|
/>
|
||||||
<Text style={styles.comment}>{makeCountFriendly(content.vote_count)}</Text>
|
<Text style={styles.comment}>{content.vote_count}</Text>
|
||||||
</TouchableOpacity>
|
</TouchableOpacity>
|
||||||
</View>
|
</View>
|
||||||
<TouchableOpacity style={styles.commentButton}>
|
<TouchableOpacity style={styles.commentButton}>
|
||||||
<Icon style={[styles.commentIcon]} iconType="MaterialIcons" name="comment" />
|
<Icon style={[styles.commentIcon]} iconType="MaterialIcons" name="comment" />
|
||||||
<Text style={styles.comment}>{makeCountFriendly(content.children)}</Text>
|
<Text style={styles.comment}>{content.children}</Text>
|
||||||
</TouchableOpacity>
|
</TouchableOpacity>
|
||||||
</View>
|
</View>
|
||||||
</View>
|
</View>
|
||||||
|
Loading…
Reference in New Issue
Block a user