When I change a selection from combobox, variable "steps" will change and that makes the html change like the following.
<component-item *ngFor="let step of steps ; let i = index" title={{step.title}} ></component-item>
but when "steps" variable changes by event trigger, I get error message. Error: ViewDestroyedError: Attempt to use a destroyed view: detectChanges
I tried detach and detectchanges but still I get this message. How can I redraw the html?