node-red-contrib-actionflows
Advanced tools
Comparing version 1.2.0 to 1.2.1
@@ -218,2 +218,4 @@ module.exports = function(RED) { | ||
function getTypeInputValue(t, v) { | ||
var globalContext = node.context().global; | ||
var flowContext = node.context().flow; | ||
var r = ''; | ||
@@ -257,5 +259,7 @@ switch(t) { | ||
case "flow": | ||
var flowContext = node.context().flow; | ||
flowContext.set(property, value); | ||
break; | ||
case "global": | ||
var globalContext = node.context().global; | ||
globalContext.set(property, value); | ||
@@ -262,0 +266,0 @@ break; |
{ | ||
"name": "node-red-contrib-actionflows", | ||
"version": "1.2.0", | ||
"version": "1.2.1", | ||
"description": "Create extendable, loopable, and reusable design patterns for flows.", | ||
@@ -5,0 +5,0 @@ "author": "Stephen J. Carnam <steveorevo@gmail.com>", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
1429063
1571
28