diff --git a/src/app/app.component.ts b/src/app/app.component.ts index 2025508b..8579328b 100644 --- a/src/app/app.component.ts +++ b/src/app/app.component.ts @@ -14,7 +14,7 @@ export class AppComponent implements OnInit, OnDestroy{ title = 'app'; - private floatingColumnActive: boolean; + floatingColumnActive: boolean; private columnEditorSub: Subscription; constructor(private readonly navigationService: NavigationService) { diff --git a/src/app/components/left-side-bar/presentation/account-icon/account-icon.component.ts b/src/app/components/left-side-bar/presentation/account-icon/account-icon.component.ts index be99ffb4..fecd753d 100644 --- a/src/app/components/left-side-bar/presentation/account-icon/account-icon.component.ts +++ b/src/app/components/left-side-bar/presentation/account-icon/account-icon.component.ts @@ -24,7 +24,7 @@ export class AccountIconComponent implements OnInit { return false; } - openMenu(event): boolean { + openMenu(): boolean { this.openMenuNotify.emit(this.account); return false; }