From bf9a45e2a1fd91b45b1ffce0f3abcde24e0299ee Mon Sep 17 00:00:00 2001 From: Richie Zhang <12566991+StaticallyTypedRice@users.noreply.github.com> Date: Mon, 3 Feb 2020 15:20:59 -0800 Subject: [PATCH] Display a given user's total score. --- ui/src/components/user.tsx | 3 +++ 1 file changed, 3 insertions(+) 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) })} +