boutons 'tout (dé)sélectionner' pour les pages popularity

This commit is contained in:
MiharyR 2021-12-16 19:10:09 +01:00
parent ad0397e8ad
commit dab2748079
4 changed files with 26 additions and 6 deletions

View file

@ -294,4 +294,15 @@ export class PagesPopularityComponent implements OnInit
return tabDate;
}
onSelectAll(): void
{
this.formControl = new FormControl(this.allCoupleNameViews);
}
onDeSelectAll(): void
{
this.formControl = new FormControl([]);
}
}