I have created a simple example to demonstrate a weird issue I\'m facing.
Stackblitz - https://stackblitz.com/edit/angular-change-detection-form-group
I hav
I found a workaround to this problem although I am not sure if this is the ideal solution.
We can listen to the form group value changes and then trigger change detection in the input component
this.form.valueChanges.subscribe( () => {
this.cdr.detectChanges()
});
This way it updates the label values as well along with the inputs.
Here is the solution:
https://stackblitz.com/edit/angular-change-detection-form-group-value-change-issue-resolved
I'm not sure if it's a bug from Angular but happy that I figured out some workaround :)