mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-19 04:57:52 +00:00
fix search
This commit is contained in:
@@ -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)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user