This commit is contained in:
kevinpauer 2022-04-06 19:58:52 +02:00
parent 7ada44ea23
commit b929968be8

View File

@ -36,6 +36,7 @@ export class ProfileComponent implements OnInit {
result = JSON.parse(result); result = JSON.parse(result);
this.form.username = result.data.username; this.form.username = result.data.username;
this.form.password = result.data.password; this.form.password = result.data.password;
this.form.email = result.data.email;
this.userId = result.data.telegram_user_id; this.userId = result.data.telegram_user_id;
}); });
} }