Fixed web page error, #3650
Ylian Saint-Hilaire committed
Feb 15, 2022 at 10:57 UTC
bc6d3ce8a0a3ba09af185bcc3d3c9f1ded5e3805
1 file changed
+1
-1
views/default.handlebars
+1
-1
@@ -4049,7 +4049,7 @@
4049
}
4050
} else {
4051
// If sorted by "Groups-Tags" and a device has no tags, put in a group only section.
4052
- if ((sort == 4) && ((node.tags == null) || (node.tags.length == 0))) {
4052
+ if ((sort == 4) && (mesh2 != null) && ((node.tags == null) || (node.tags.length == 0))) {
4053
var tag = mesh2.name;
4054
var collapsed = CollapsedGroups['tag:' + encodeURIComponentEx(tag)];
4055
var r2 = r.replace('**xx**xx*TaG*xx**xx**', encodeURIComponentEx(tag) + (collapsed?' style=display:none':''));