From 3439be1bbbc9aa523e86c865acc5cd81a931f2cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=B8=96=E7=95=8C?= Date: Wed, 26 Aug 2026 20:07:09 +0800 Subject: [PATCH] Do not hide groups containing only a single item --- daemon/started_service.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daemon/started_service.go b/daemon/started_service.go index 06335249..964e83fd 100644 --- a/daemon/started_service.go +++ b/daemon/started_service.go @@ -622,7 +622,7 @@ func (s *StartedService) readGroups() *Groups { } g.Items = append(g.Items, &item) } - if len(g.Items) < 2 { + if len(g.Items) == 0 { continue } gs.Group = append(gs.Group, &g)