From 9ac79f00ad09fb1bb7f01c441ea2097c9fd6d0ef Mon Sep 17 00:00:00 2001 From: Ylian Saint-Hilaire Date: Sat, 28 Aug 2021 09:52:44 -0700 Subject: [PATCH] Fix for #3069 --- views/default.handlebars | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/views/default.handlebars b/views/default.handlebars index fac89fce..d865104c 100644 --- a/views/default.handlebars +++ b/views/default.handlebars @@ -6598,7 +6598,7 @@ } // Active Users - if (node.users && node.conn && (node.users.length > 0) && (node.conn & 1)) { x += addDeviceAttribute(((node.users.length > 1)?'Active Users':'Active User'), EscapeHtml(node.users.join(', '))); } + if (node.users && node.conn && (node.users.length > 0) && (node.conn & 1)) { x += addDeviceAttribute(((node.users.length > 1)?"Active Users":"Active User"), EscapeHtml(node.users.join(', '))); } // Display device user consent if ((node.agent != null) && (node.agent.id != 14) && (node.mtype != 3)) {