From 9dfaa38c9a23a6093faabc06d7b91caecf993dfd Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Mon, 18 Jan 2021 11:45:00 +0100 Subject: username field consistency --- .../my-account-profile/my-account-profile.component.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'client/src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.ts') diff --git a/client/src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.ts b/client/src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.ts index 957abe555..80e4446c8 100644 --- a/client/src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.ts +++ b/client/src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.ts @@ -25,15 +25,15 @@ export class MyAccountProfileComponent extends FormReactive implements OnInit { ngOnInit () { this.buildForm({ - 'user-name': null, + username: null, 'display-name': USER_DISPLAY_NAME_REQUIRED_VALIDATOR, description: USER_DESCRIPTION_VALIDATOR }) - this.form.controls['user-name'].disable() + this.form.controls['username'].disable() this.userInformationLoaded.subscribe(() => { this.form.patchValue({ - 'user-name': this.user.username, + username: this.user.username, 'display-name': this.user.account.displayName, description: this.user.account.description }) -- cgit v1.2.3