mirror of https://github.com/LemmyNet/lemmy.git
Hide user karma on details page. Fixes #585
parent
cf516fcc83
commit
f8ea6a527d
|
@ -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,
|
||||||
|
|
Loading…
Reference in New Issue