Skip to content

Commit

Permalink
Show user email in registration application (#2400)
Browse files Browse the repository at this point in the history
Co-authored-by: Dessalines <dessalines@users.noreply.github.com>
  • Loading branch information
SleeplessOne1917 and dessalines authored Mar 27, 2024
1 parent 70e382b commit ad07fc4
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/shared/components/common/registration-application.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,14 @@ export class RegistrationApplication extends Component<
this.forceUpdate(),
)}
/>
{a.creator_local_user.email && (
<div>
{I18NextService.i18n.t("email")}:&nbsp;
<a href={`mailto:${a.creator_local_user.email}`}>
{a.creator_local_user.email}
</a>
</div>
)}

{a.admin && (
<div>
Expand Down

0 comments on commit ad07fc4

Please sign in to comment.