Skip to content

Commit 3b1d31d

Browse files
committed
fix collection in deleted button
1 parent b0c8145 commit 3b1d31d

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

OpenFlow/src/public/Controllers.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4540,7 +4540,7 @@ export class DeletedCtrl extends entitiesCtrl<Base> {
45404540
this.postloadData = this.processdata;
45414541
if (this.userdata.data.DeletedCtrl) {
45424542
this.basequery = this.userdata.data.DeletedCtrl.basequery;
4543-
this.collection = this.userdata.data.DeletedCtrl.collection;
4543+
if (this.collection == null) this.collection = this.userdata.data.DeletedCtrl.collection;
45444544
this.baseprojection = this.userdata.data.DeletedCtrl.baseprojection;
45454545
this.orderby = this.userdata.data.DeletedCtrl.orderby;
45464546
this.searchstring = this.userdata.data.DeletedCtrl.searchstring;

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.2.83",
3+
"version": "1.2.84",
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.2.83
1+
1.2.84

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.2.83",
3+
"version": "1.2.84",
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)