Skip to content

Commit 45bcaad

Browse files
committed
allow processing with form
1 parent 45667bb commit 45bcaad

4 files changed

Lines changed: 5 additions & 4 deletions

File tree

OpenFlow/src/public/Controllers.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1762,6 +1762,7 @@ export class FormCtrl extends entityCtrl<WorkflowInstance> {
17621762
}
17631763
async loadData(): Promise<void> {
17641764
this.loading = true;
1765+
this.message = "";
17651766
var res = await NoderedUtil.Query(this.collection, this.basequery, null, { _created: -1 }, 1, 0, null);
17661767
if (res.length > 0) { this.workflow = res[0]; } else {
17671768
this.errormessage = this.id + " workflow not found!";
@@ -1789,7 +1790,7 @@ export class FormCtrl extends entityCtrl<WorkflowInstance> {
17891790
}
17901791

17911792

1792-
if (this.model.form === "none" || this.model.form === "") {
1793+
if (this.model.form === "none" || this.model.form === "" || this.model.state == "processing") {
17931794
if (this.model.state != "failed" && this.model.state != "processing") {
17941795
this.$location.path("/main");
17951796
} else {

OpenFlowNodeRED/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "openflow-nodered",
3-
"version": "1.0.80",
3+
"version": "1.0.81",
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": {

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.0.80
1+
1.0.81

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "openiap",
3-
"version": "1.0.80",
3+
"version": "1.0.81",
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)