diff options
Diffstat (limited to 'src/view/com')
-rw-r--r-- | src/view/com/notifications/FeedItem.tsx | 4 | ||||
-rw-r--r-- | src/view/com/post-thread/PostThreadItem.tsx | 5 | ||||
-rw-r--r-- | src/view/com/profile/ProfileHeader.tsx | 2 |
3 files changed, 7 insertions, 4 deletions
diff --git a/src/view/com/notifications/FeedItem.tsx b/src/view/com/notifications/FeedItem.tsx index 4ca5fb01a..ac2e2a190 100644 --- a/src/view/com/notifications/FeedItem.tsx +++ b/src/view/com/notifications/FeedItem.tsx @@ -34,6 +34,7 @@ import { getProfileModeration, } from 'lib/labeling/helpers' import {ProfileModeration} from 'lib/labeling/types' +import {formatCount} from '../util/numeric/format' const MAX_AUTHORS = 5 @@ -218,7 +219,8 @@ export const FeedItem = observer(function ({ <> <Text style={[pal.text]}> and </Text> <Text style={[pal.text, s.bold]}> - {authors.length - 1} {pluralize(authors.length - 1, 'other')} + {formatCount(authors.length - 1)}{' '} + {pluralize(authors.length - 1, 'other')} </Text> </> ) : undefined} diff --git a/src/view/com/post-thread/PostThreadItem.tsx b/src/view/com/post-thread/PostThreadItem.tsx index ddb2cb7bb..d657c92c3 100644 --- a/src/view/com/post-thread/PostThreadItem.tsx +++ b/src/view/com/post-thread/PostThreadItem.tsx @@ -26,6 +26,7 @@ import {PostHider} from '../util/moderation/PostHider' import {ContentHider} from '../util/moderation/ContentHider' import {ErrorMessage} from '../util/error/ErrorMessage' import {usePalette} from 'lib/hooks/usePalette' +import {formatCount} from '../util/numeric/format' const PARENT_REPLY_LINE_LENGTH = 8 @@ -247,7 +248,7 @@ export const PostThreadItem = observer(function PostThreadItem({ title={repostsTitle}> <Text testID="repostCount" type="lg" style={pal.textLight}> <Text type="xl-bold" style={pal.text}> - {item.post.repostCount} + {formatCount(item.post.repostCount)} </Text>{' '} {pluralize(item.post.repostCount, 'repost')} </Text> @@ -262,7 +263,7 @@ export const PostThreadItem = observer(function PostThreadItem({ title={likesTitle}> <Text testID="likeCount" type="lg" style={pal.textLight}> <Text type="xl-bold" style={pal.text}> - {item.post.likeCount} + {formatCount(item.post.likeCount)} </Text>{' '} {pluralize(item.post.likeCount, 'like')} </Text> diff --git a/src/view/com/profile/ProfileHeader.tsx b/src/view/com/profile/ProfileHeader.tsx index d3945ea2a..d69cf4a12 100644 --- a/src/view/com/profile/ProfileHeader.tsx +++ b/src/view/com/profile/ProfileHeader.tsx @@ -401,7 +401,7 @@ const ProfileHeaderLoaded = observer( </Text> </TouchableOpacity> <Text type="md" style={[s.bold, pal.text]}> - {view.postsCount}{' '} + {formatCount(view.postsCount)}{' '} <Text type="md" style={[pal.textLight]}> {pluralize(view.postsCount, 'post')} </Text> |