mirror of
https://github.com/LemmyNet/lemmy-ui.git
synced 2024-11-22 04:11:12 +00:00
Show user email in registration application (#2400)
Co-authored-by: Dessalines <dessalines@users.noreply.github.com>
This commit is contained in:
parent
70e382b3d9
commit
ad07fc4fed
1 changed files with 8 additions and 0 deletions
|
@ -74,6 +74,14 @@ export class RegistrationApplication extends Component<
|
|||
this.forceUpdate(),
|
||||
)}
|
||||
/>
|
||||
{a.creator_local_user.email && (
|
||||
<div>
|
||||
{I18NextService.i18n.t("email")}:
|
||||
<a href={`mailto:${a.creator_local_user.email}`}>
|
||||
{a.creator_local_user.email}
|
||||
</a>
|
||||
</div>
|
||||
)}
|
||||
|
||||
{a.admin && (
|
||||
<div>
|
||||
|
|
Loading…
Reference in a new issue