From 41830e6b9d3f2c0806efc75cfd976fc4738ed1d9 Mon Sep 17 00:00:00 2001 From: = Date: Sat, 3 Oct 2020 07:49:50 +0200 Subject: [PATCH] fix update recipe --- Thermo.Active/wwwroot/src/services/hub.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Thermo.Active/wwwroot/src/services/hub.ts b/Thermo.Active/wwwroot/src/services/hub.ts index a1e7aa6f..17e50bb1 100644 --- a/Thermo.Active/wwwroot/src/services/hub.ts +++ b/Thermo.Active/wwwroot/src/services/hub.ts @@ -176,7 +176,7 @@ export class Hub { } public static recipeFullData(data) { - recipeActions.setCurrent(store, data, false); + recipeActions.setCurrent(store, data, true); } public static recipeOverData(data) { @@ -188,6 +188,7 @@ export class Hub { } public static prodData(data) { + console.log('prodInfoData', data); prodActions.setProd(store, data); }