Skip to content

Commit 3eb898f

Browse files
committed
force update
1 parent ab1b77a commit 3eb898f

4 files changed

Lines changed: 7 additions & 4 deletions

File tree

OpenFlowNodeRED/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@openiap/nodered",
3-
"version": "1.3.37",
3+
"version": "1.3.38",
44
"description": "Simple wrapper around NodeRed, RabbitMQ and MongoDB to support a more scaleable NodeRed implementation.\r Also the \"backend\" for [OpenRPA](https://github.com/skadefro/OpenRPA)",
55
"main": "index.js",
66
"scripts": {

OpenFlowNodeRED/src/nodered/nodes/api.html

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,10 @@
33
return function () {
44
if (this[name] == null || this[name] == "") {
55
console.log(this.type, name + " false: value null");
6-
if (name == "entities" && this.inputfield != null) { this[name] = this.inputfield; return true; }
6+
if (name == "entities" && this.inputfield != null) {
7+
this[name] = this.inputfield; return true;
8+
this[name + "type"] = "msg";
9+
}
710
return false;
811
}
912
// if (this[name + "type"] == null || this[name + "type"] == "") {

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.3.37
1+
1.3.38

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@openiap/openflow",
3-
"version": "1.3.37",
3+
"version": "1.3.38",
44
"description": "Simple wrapper around NodeRed, RabbitMQ and MongoDB to support a more scaleable NodeRed implementation.\r Also the \"backend\" for [OpenRPA](https://github.com/skadefro/OpenRPA)",
55
"main": "index.js",
66
"scripts": {

0 commit comments

Comments
 (0)