I have an Angular 9 Material Form that is bound to a formGroup, which has two controls. One a mat-form-field, the other a mat-table. I have a data model that has a the schema of a single string and an array of objects.
With this, I am able to bind to the single string but I am having an issue with the table. I use formControlName and formArrayName but it does not bind. I have tried a variety of different things but can't find a good way to bind the array data to the mat-table. I am sure I am missing something but it is not clear.
Here is a stackblitz to show you an example of my problem