mirror of
https://github.com/node-red/node-red-nodes.git
synced 2025-12-26 23:16:47 +01:00
Fix cacheItemCount to use mtausers length
This commit is contained in:
committed by
GitHub
parent
853e88ba24
commit
903f62f548
@@ -507,7 +507,7 @@
|
||||
// User Management
|
||||
let cacheItemCount = 0;
|
||||
if (node.mtausers && node.mtausers.length > 0) {
|
||||
cacheItemCount = node.users.length;
|
||||
cacheItemCount = node.mtausers.length;
|
||||
node.mtausers.forEach(function (element, index, array) {
|
||||
generateUserEntry(element, index);
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user