How can i patch the value inside of my row. I have this unit_price that if i selected a specific ingredient in the select option, it would patch it in the input field of the unit_price? Pls see this link for the codes SEE THIS LINK
onSelectIngredient(event): void {
const formData ={
ingredient_id: event.target.value
}
console.log(formData);
this.patchValues();
}