fix(tui): stable monitor count and universal group icons

Site count in tab label and footer now reflects total monitors
(excluding groups) regardless of collapse state. Down count also
computed from all sites so collapsed groups with down children
still surface in the badge. Replaced Nerd Font folder glyphs
with standard Unicode triangles for cross-font compatibility.
This commit is contained in:
2026-05-23 11:01:34 -04:00
parent e84b64f8ed
commit fb11e9ba85
2 changed files with 14 additions and 8 deletions
+2 -2
View File
@@ -29,9 +29,9 @@ func typeIcon(siteType string, collapsed bool) string {
return "◆"
case "group":
if collapsed {
return ""
return ""
}
return ""
return ""
default:
return "·"
}