Skip to content

Commit

Permalink
hi
Browse files Browse the repository at this point in the history
  • Loading branch information
maheedhar1998 committed Mar 2, 2020
1 parent 2d5efa2 commit c8f9edc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/app/home/home.page.html
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
<ion-avatar>
<ion-img src = "{{contact.photo}}"></ion-img>
</ion-avatar>
</ion-col>
</ion-col>
<ion-col id ="user-info">
<ion-item lines="none">
<ion-title>{{contact.name}}</ion-title>
Expand Down
2 changes: 1 addition & 1 deletion src/app/user-contact/user-contact.page.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export class UserContactPage implements OnInit {
}else{
this.firebase = new FirebaseBackendService(firebase.auth().currentUser.uid);
this.route.params.subscribe(dat => {
this.profile = dat['contact'];
this.profile = JSON.parse(dat['contact']);
this.initGrid();
});
}
Expand Down

0 comments on commit c8f9edc

Please sign in to comment.