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
@@ -10,7 +10,7 @@ export class ProfileComponent implements OnInit {
initialClick = true;
@Input() user?: User;
@Output() showProfilePopoverChange = new EventEmitter<boolean>();
@Output() showProfilePopOverChange = new EventEmitter<boolean>();
constructor(private eRef: ElementRef) {
}
@@ -31,7 +31,7 @@ export class ProfileComponent implements OnInit {
}
if (!this.eRef.nativeElement.contains(event.target)) {
this.showProfilePopoverChange.emit(false);
this.showProfilePopOverChange.emit(false);
}
}