Hide user karma on details page. Fixes #585

pull/722/head
Dessalines 2020-03-08 14:33:04 -04:00
parent cf516fcc83
commit f8ea6a527d
1 changed files with 6 additions and 0 deletions

View File

@ -363,6 +363,7 @@ export class User extends Component<any, UserState> {
</div> </div>
<div class="table-responsive mt-1"> <div class="table-responsive mt-1">
<table class="table table-bordered table-sm mt-2 mb-0"> <table class="table table-bordered table-sm mt-2 mb-0">
{/*
<tr> <tr>
<td class="text-center" colSpan={2}> <td class="text-center" colSpan={2}>
{i18n.t('number_of_points', { {i18n.t('number_of_points', {
@ -370,18 +371,23 @@ export class User extends Component<any, UserState> {
})} })}
</td> </td>
</tr> </tr>
*/}
<tr> <tr>
{/*
<td> <td>
{i18n.t('number_of_points', { count: user.post_score })} {i18n.t('number_of_points', { count: user.post_score })}
</td> </td>
*/}
<td> <td>
{i18n.t('number_of_posts', { count: user.number_of_posts })} {i18n.t('number_of_posts', { count: user.number_of_posts })}
</td> </td>
{/*
</tr> </tr>
<tr> <tr>
<td> <td>
{i18n.t('number_of_points', { count: user.comment_score })} {i18n.t('number_of_points', { count: user.comment_score })}
</td> </td>
*/}
<td> <td>
{i18n.t('number_of_comments', { {i18n.t('number_of_comments', {
count: user.number_of_comments, count: user.number_of_comments,