WIP: Responsive header menu 2

This commit is contained in:
2022-09-08 16:10:05 +02:00
parent 0c10e46d1a
commit d0c485c0e9
4 changed files with 6 additions and 7 deletions
@@ -9,7 +9,7 @@ import {StorageService} from '../../services/storage.service';
})
export class HeaderComponent implements OnInit {
showProfilePopover: boolean = false;
showProfilePopOver: boolean = false;
user?: User;
constructor() {
@@ -20,11 +20,11 @@ export class HeaderComponent implements OnInit {
}
openProfile(): void {
this.showProfilePopover = true;
this.showProfilePopOver = true;
}
closeProfile(): void {
this.showProfilePopover = false;
this.showProfilePopOver = false;
}
getUserName(): string {