From be1206bb934c223893a652be5f1f6c911c9c66be Mon Sep 17 00:00:00 2001 From: BO41 Date: Sat, 22 Sep 2018 16:56:07 +0200 Subject: fix lint errors --- .../my-account-change-password.component.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'client/src/app') diff --git a/client/src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.ts b/client/src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.ts index c4837460a..da0021df9 100644 --- a/client/src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.ts +++ b/client/src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.ts @@ -5,8 +5,8 @@ import { I18n } from '@ngx-translate/i18n-polyfill' import { FormValidatorService } from '@app/shared/forms/form-validators/form-validator.service' import { UserValidatorsService } from '@app/shared/forms/form-validators/user-validators.service' import { filter } from 'rxjs/operators' -import { AuthService } from '@app/core'; -import { User } from '../../../../../../shared'; +import { AuthService } from '@app/core' +import { User } from '../../../../../../shared' @Component({ selector: 'my-account-change-password', @@ -46,7 +46,7 @@ export class MyAccountChangePasswordComponent extends FormReactive implements On checkPassword () { this.error = null - const oldPassword = this.form.value[ 'old-password' ]; + const oldPassword = this.form.value[ 'old-password' ] // compare old password this.authService.login(this.user.account.name, oldPassword) @@ -60,7 +60,7 @@ export class MyAccountChangePasswordComponent extends FormReactive implements On } - private changePassword(){ + private changePassword () { this.userService.changePassword(this.form.value[ 'new-password' ]).subscribe( () => { this.notificationsService.success(this.i18n('Success'), this.i18n('Password updated.')) -- cgit v1.2.3