I have an input as an array
@ViewChild('ref') title!: ElementRef<HTMLHeadingElement>;
@Input() children: TextElementChild[] = [];
@Input() elementId: string = '';
@Input() text: string = '';
@Input() level: TextElement['level'] = 1;
@Input() hasPlaceHolder: boolean = false;
so in the parent component of this one.. I am accessing the model to get the values of this child component. so if anything in the model changes -> this component should rerender.
The problem now is that this component is not rerendering when I change the value that's passed to the @Input children in the model
So how can I solve this stupid problem ?