From: Richie Zhang <12566991+StaticallyTypedRice@users.noreply.github.com> Date: Mon, 3 Feb 2020 23:20:59 +0000 (-0800) Subject: Display a given user's total score. X-Git-Url: http://these/git/?a=commitdiff_plain;h=bf9a45e2a1fd91b45b1ffce0f3abcde24e0299ee;p=lemmy.git Display a given user's total score. --- diff --git a/ui/src/components/user.tsx b/ui/src/components/user.tsx index ebdf6d5b..329fff82 100644 --- a/ui/src/components/user.tsx +++ b/ui/src/components/user.tsx @@ -356,6 +356,9 @@ export class User extends Component {
{i18n.t('joined')}
+
+ {i18n.t('total_number_of_points', { count: (user.post_score + user.comment_score) })} +