Merge branch 'dev' into Romain

This commit is contained in:
Romain Verger 2022-02-16 14:19:22 +01:00
commit a97d444fe1
6 changed files with 44 additions and 21 deletions

View file

@ -16,12 +16,15 @@ export class HomePageComponent implements OnInit {
ngOnInit(): void {
this.apiBackService.getCategories().subscribe((listCategories: any[]) => {
console.log(listCategories);
// console.log(listCategories);
this.listCategories = listCategories;
});
}
onEventLike(isLiked : boolean) {
this.apiBackService.restoLiked$.next(isLiked);
}
}