HTML
<ng-container *ngFor="let permission of perm.values" [(ngModel)]="permissions = permission">
TS permissions: [];
Hi, I have this container in template and I have a permissions list in TS. I wanted to fill that permissions field with the values I get from '*ngFor'. How can I do that?