Merge pull request #15 from AlineRinquin/aline

ajout des commentaires manquants sur le code
This commit is contained in:
AlineRinquin 2022-01-23 15:18:13 +01:00 committed by GitHub
commit a545bf5a25
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -27,6 +27,7 @@ export class PageRepertoireComponent implements OnInit {
}
ngOnInit(): void {
//récupère tout les contact et leurs info
this.repertoireService.getContact().subscribe((listContact: any[]) => {
console.log(listContact);
this.listContact = listContact;
@ -62,6 +63,7 @@ export class PageRepertoireComponent implements OnInit {
this.listContact = prenom;
}
// Méthode qui au click va ouvrir les détails d'un contat
onClick(personne: any) {
console.log(personne);
this.openDetails = personne;