Skip to content

Commit ece8cf2

Browse files
committed
check for null in name on Auditlogs
1 parent 7953b8c commit ece8cf2

4 files changed

Lines changed: 5 additions & 4 deletions

File tree

OpenFlow/src/public/Auditlogs.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,8 @@ <h1 translate lib="web">auditlogs</h1>
4949
<i ng-class="model.fa2">
5050

5151
</td>
52-
<td class="btn-cell"><a href ng-click="ctrl.ShowAudit(model)" class="table-btn">{{model.name}}</a></td>
52+
<td class="btn-cell"><a href ng-click="ctrl.ShowAudit(model)"
53+
class="table-btn">{{( model.name == "" || model.name == null? "unknown": model.name)}}</a></td>
5354
<td>{{model.type}}</td>
5455
<td>{{model.impostorname}}</td>
5556
<td>{{model.clientagent || model.imagename}}</td>

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

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