From d0fbc9fd0a29c37f3ff9b99030351e90b276fe7d Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Wed, 24 May 2023 15:27:15 +0200 Subject: Fix lint --- .../my-account-profile/my-account-profile.component.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 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 8621eb7aa..a2d128190 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,17 +25,17 @@ export class MyAccountProfileComponent extends FormReactive implements OnInit { ngOnInit () { this.buildForm({ - username: null, + 'username': null, 'display-name': USER_DISPLAY_NAME_REQUIRED_VALIDATOR, - description: USER_DESCRIPTION_VALIDATOR + 'description': USER_DESCRIPTION_VALIDATOR }) this.form.controls['username'].disable() this.userInformationLoaded.subscribe(() => { this.form.patchValue({ - username: this.user.username, + 'username': this.user.username, 'display-name': this.user.account.displayName, - description: this.user.account.description + 'description': this.user.account.description }) }) } -- cgit v1.2.3