Angular 9.0 - FormGroup and FormArray - remove row from table
问题 I've tried trying to remove a row using a button click, but it doesn't work and I'm not so sure what can I do to solve this issue. Initial json displayed is: { "list": [ { "description": null, "status": false } ] } When I click the Remove button, the json displayed will become: { "list": [] } AND the selected row is not removed at all. Here's the codes below. todo-list.component.ts todoListForm: FormGroup; constructor(private toDoService: TodoService, private formBuilder: FormBuilder) { this