fix search

This commit is contained in:
Peter Maquiran
2023-01-25 15:49:16 +01:00
parent 891c44d674
commit 9fea5d8488
9 changed files with 49 additions and 39 deletions
+6 -6
View File
@@ -18,7 +18,6 @@ import { environment } from 'src/environments/environment';
})
export class ProfilePage implements OnInit {
loggeduser: LoginUserRespose;
userLoginPreference = ''
notificationdata: any[] = [];
DataArray: Array<Object> = [];
@@ -34,26 +33,27 @@ export class ProfilePage implements OnInit {
hideImage = false
logoutOut = false
notificationStatus = '';
environment = environment
constructor(private modalController: ModalController,
private authService: AuthService,
SessionStore = SessionStore;
constructor(
private modalController: ModalController,
private animationController: AnimationController,
private router: Router,
private storageservice: StorageService,
private zone: NgZone,
private notificationservice: NotificationsService,
private platform: Platform,
private eventtrigger: EventTrigger,
public ThemeService: ThemeService,
) {
this.loggeduser = SessionStore.user;
router.events.subscribe((val) => {
this.isProfileOpen = false
this.logoutOut = true
});
setTimeout(()=>{
setTimeout(() => {
this.hideImage = true
}, 2000)
}