This commit is contained in:
tiago.kayaya
2021-05-18 14:37:43 +01:00
parent e47920cdfc
commit 6997295a31
10 changed files with 108 additions and 82 deletions
+8 -11
View File
@@ -18,19 +18,16 @@ export class HeaderPage implements OnInit {
loggeduser: User;
constructor(
private router: Router,private modalController: ModalController,
private router: Router,
private modalController: ModalController,
private animationController: AnimationController,
authService: AuthService) {
authService: AuthService
) {
this.loggeduser = authService.ValidatedUser;
router.events.subscribe((val) => {
this.showSearch=false;
this.modalController.dismiss()
});
router.events.subscribe((val) => {
this.showSearch=false;
//this.modalController.dismiss();
});
}
ngOnInit() {