aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/webview/recipe.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/webview/recipe.js b/src/webview/recipe.js
index 9aa89ce01..c718b348e 100644
--- a/src/webview/recipe.js
+++ b/src/webview/recipe.js
@@ -73,7 +73,7 @@ class RecipeController {
73 require(modulePath)(new RecipeWebview(), {...config, recipe,}); 73 require(modulePath)(new RecipeWebview(), {...config, recipe,});
74 debug('Initialize Recipe', config, recipe); 74 debug('Initialize Recipe', config, recipe);
75 75
76 this.settings.service = config; 76 this.settings.service = Object.assign(config, { recipe });
77 } catch (err) { 77 } catch (err) {
78 console.error('Recipe initialization failed', err); 78 console.error('Recipe initialization failed', err);
79 } 79 }