From 9df52d660feb722404be00a50f3c8a612bec1c15 Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Tue, 17 Aug 2021 14:42:53 +0200 Subject: Migrate client to eslint --- .../my-account-change-email/my-account-change-email.component.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'client/src/app/+my-account/my-account-settings/my-account-change-email') diff --git a/client/src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.ts b/client/src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.ts index 08bc5b425..9b87daa40 100644 --- a/client/src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.ts +++ b/client/src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.ts @@ -28,7 +28,7 @@ export class MyAccountChangeEmailComponent extends FormReactive implements OnIni ngOnInit () { this.buildForm({ 'new-email': USER_EMAIL_VALIDATOR, - 'password': USER_PASSWORD_VALIDATOR + password: USER_PASSWORD_VALIDATOR }) this.user = this.authService.getUser() @@ -38,8 +38,8 @@ export class MyAccountChangeEmailComponent extends FormReactive implements OnIni this.error = null this.success = null - const password = this.form.value[ 'password' ] - const email = this.form.value[ 'new-email' ] + const password = this.form.value['password'] + const email = this.form.value['new-email'] forkJoin([ this.serverService.getConfig(), -- cgit v1.2.3