Recently I started to develop with Angular and ng-bootstrap. I'm working on a form with the help of Reactive Forms which contains some FormControls and a nested FormArray. For each element in the FormArray, I want to display a child component that belongs to a tab of a Tabset component of ng-bootstrap but the child component doesn't render.
The form is divided into two components: MainForm and SubForm. MainForm contains some FormControls, one FormArray, an instance of Tabset and instance of SubForm for each element in FormArray. SubForm is a tab of Tabset that contains a nested form some input fields.
When I render MainForm an API call is fired and returns some data to fill the form. FormControls and FormArray of MainForm are filled but SubForm doesn't render.
I reproduced the issue with the minimal configuration in a link using Stackblitz.