Adding profile component (de)activation logic

This commit is contained in:
2022-09-02 17:55:19 +02:00
parent 18a02f0940
commit 47c494653c
18 changed files with 174 additions and 133 deletions
@@ -16,8 +16,10 @@ export class HeaderComponent implements OnInit {
}
openProfile(): void {
console.log('Called');
this.showProfilePopover = !this.showProfilePopover;
this.showProfilePopover = true;
}
closeProfile(): void {
this.showProfilePopover = false;
}
}