From b929968be857da98a282faa90241b9bf03b9c848 Mon Sep 17 00:00:00 2001 From: kevinpauer Date: Wed, 6 Apr 2022 19:58:52 +0200 Subject: [PATCH] Fix #42 --- frontend/src/app/Views/profile/profile.component.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/src/app/Views/profile/profile.component.ts b/frontend/src/app/Views/profile/profile.component.ts index 6ce31bf..795d4ba 100644 --- a/frontend/src/app/Views/profile/profile.component.ts +++ b/frontend/src/app/Views/profile/profile.component.ts @@ -36,6 +36,7 @@ export class ProfileComponent implements OnInit { result = JSON.parse(result); this.form.username = result.data.username; this.form.password = result.data.password; + this.form.email = result.data.email; this.userId = result.data.telegram_user_id; }); }