linting fixes

This commit is contained in:
SheenaMalhotra182
2023-03-17 17:50:41 +05:30
committed by Sheena Malhotra
parent 8d2e7df738
commit 4a2b6a4b60
4 changed files with 4 additions and 4 deletions

View File

@@ -163,4 +163,4 @@ describe('ViewProfileComponent', () => {
expect(component.toggleContactButtons).toHaveBeenCalledTimes(2); expect(component.toggleContactButtons).toHaveBeenCalledTimes(2);
}); });
}); });

View File

@@ -171,4 +171,4 @@ export class ViewProfileComponent implements OnInit {
isSaveButtonDisabled(): boolean { isSaveButtonDisabled(): boolean {
return this.profileForm.invalid; return this.profileForm.invalid;
} }
} }

View File

@@ -24,4 +24,4 @@ export class ViewProfileRuleGuard implements CanActivate {
private isEcmLoggedIn() { private isEcmLoggedIn() {
return this.authService.isEcmLoggedIn() || (this.authService.isECMProvider() && this.authService.isKerberosEnabled()); return this.authService.isEcmLoggedIn() || (this.authService.isECMProvider() && this.authService.isKerberosEnabled());
} }
} }

View File

@@ -32,4 +32,4 @@ import { CoreModule } from '@alfresco/adf-core';
imports: [CommonModule, CoreModule.forChild()], imports: [CommonModule, CoreModule.forChild()],
declarations: [ViewProfileComponent] declarations: [ViewProfileComponent]
}) })
export class ViewProfileModule {} export class ViewProfileModule {}