forgot close bracket for new gotodeviceip
Signed-off-by: si458 <simonsmith5521@gmail.com>
si458 committed
Jul 10, 2025 at 15:19 UTC
045fac4639f20bf496bec7bb544cf9e6de8e8b26
1 file changed
+1
-1
views/default3.handlebars
+1
-1
@@ -4533,7 +4533,7 @@
4533
var foundNode = null;
4534
if (nodes != null) { for (var i in nodes) { if (nodes[i].rname == args.gotodevicername) { foundNode = nodes[i]._id; } } }
4535
if (foundNode) { gotoDevice(foundNode, xviewmode); goBackStack.push(1); }
4536
- else if (args.gotodeviceip != null) {
4536
+ } else if (args.gotodeviceip != null) {
4537
var foundNode = null;
4538
if (nodes != null) { for (var i in nodes) { if (nodes[i].ip == args.gotodeviceip) { foundNode = nodes[i]._id; } } }
4539
if (foundNode) { gotoDevice(foundNode, xviewmode); goBackStack.push(1); }