add topping edit to recipelist WIP

This commit is contained in:
pakintada@gmail.com 2024-01-19 17:13:04 +07:00
parent 6b37c73aea
commit ddfbeb4ac6
6 changed files with 180 additions and 73 deletions

View file

@ -225,8 +225,9 @@ export class RecipeDetailsComponent implements OnInit {
}
onRecipeListFormChange(repl: unknown[]) {
// console.log('Recipe List Form Changed', repl);
this.repl = repl as never[];
console.log('Recipe List Form Changed', repl);
this.repl = repl[1] as never[];
this.tpl = repl[0] as never[];
this.isValueChanged ||= repl != undefined;
}