mirror of
https://github.com/LemmyNet/lemmy-ui.git
synced 2024-11-08 17:44:16 +00:00
Show deleted on profile page. Fixes #834
This commit is contained in:
parent
b8755f83d6
commit
b0ef8a1b5a
|
@ -429,6 +429,11 @@ export class Profile extends Component<any, ProfileState> {
|
|||
{i18n.t("banned")}
|
||||
</li>
|
||||
)}
|
||||
{pv.person.deleted && (
|
||||
<li className="list-inline-item badge badge-danger">
|
||||
{i18n.t("deleted")}
|
||||
</li>
|
||||
)}
|
||||
{pv.person.admin && (
|
||||
<li className="list-inline-item badge badge-light">
|
||||
{i18n.t("admin")}
|
||||
|
|
Loading…
Reference in a new issue