diff --git a/client/src/app/features/recipes/recipe-details/recipe-list/recipe-list.component.html b/client/src/app/features/recipes/recipe-details/recipe-list/recipe-list.component.html index 78f9689..4d6b6ee 100644 --- a/client/src/app/features/recipes/recipe-details/recipe-list/recipe-list.component.html +++ b/client/src/app/features/recipes/recipe-details/recipe-list/recipe-list.component.html @@ -76,7 +76,11 @@ [attr.data-tip]="param.pkey" *ngFor="let param of getStringParamOfIndex(i)" > - + + + +
tail
mA
+sec
+ + + + +Style
+ +Level
+ + + + + +Encoder
+{{getStringParam(i, "encoder_cnt")?.pvalue}}
+ +Style
+ +Level
+ +Parameters
diff --git a/client/src/app/features/recipes/recipe-details/recipe-list/recipe-list.component.ts b/client/src/app/features/recipes/recipe-details/recipe-list/recipe-list.component.ts index a9f5e2e..cb2a6bf 100644 --- a/client/src/app/features/recipes/recipe-details/recipe-list/recipe-list.component.ts +++ b/client/src/app/features/recipes/recipe-details/recipe-list/recipe-list.component.ts @@ -108,6 +108,10 @@ export class RecipeListComponent implements OnInit { .subscribe(({ result }) => { this._recipeListOriginalArray = result; result.forEach((recipeDetailMat: RecipeDetailMat, index: number) => { + + + console.log(this.recipeListData); + // StringParam if ( recipeDetailMat.StringParam != '' || @@ -210,6 +214,18 @@ export class RecipeListComponent implements OnInit { disabled: !this.isEditable(), }, ], + feedPattern: [ + { + value: recipeDetailMat.feedPattern, + disabled: !this.isEditable(), + } + ], + feedParameter: [ + { + value: recipeDetailMat.feedParameter, + disabled: !this.isEditable(), + } + ] }) ); }); diff --git a/server/.gitignore b/server/.gitignore index a3300dd..c8b9f6d 100644 --- a/server/.gitignore +++ b/server/.gitignore @@ -4,3 +4,4 @@ token.json client_secret.json app.env +cofffeemachineConfig \ No newline at end of file