Skip to content
Snippets Groups Projects
Verified Commit 2e8ceb83 authored by Alex ORLUC's avatar Alex ORLUC
Browse files

fix set profile info

parent 88a5b829
No related branches found
No related tags found
No related merge requests found
...@@ -67,7 +67,7 @@ export class ProfileComponent implements OnInit { ...@@ -67,7 +67,7 @@ export class ProfileComponent implements OnInit {
constructor(private translate: TranslateService, public http: HttpClient, private router: Router, public sanitizer: DomSanitizer, public notificationService: NotificationService, public signaturesService: SignaturesContentService, private cookieService: CookieService, public filtersService: FiltersService) { } constructor(private translate: TranslateService, public http: HttpClient, private router: Router, public sanitizer: DomSanitizer, public notificationService: NotificationService, public signaturesService: SignaturesContentService, private cookieService: CookieService, public filtersService: FiltersService) { }
ngOnInit(): void { ngOnInit(): void {
this.profileInfo = this.signaturesService.userLogged; this.profileInfo = JSON.parse(JSON.stringify(this.signaturesService.userLogged));
} }
closeProfile() { closeProfile() {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment