From f54ebcfcf1289c53b2b61762178cda8beaef8091 Mon Sep 17 00:00:00 2001 From: AIsouler Date: Fri, 8 Mar 2024 00:41:56 +0800 Subject: [PATCH] =?UTF-8?q?perf:=20=E4=BC=98=E5=8C=96=E5=85=A8=E5=B1=80?= =?UTF-8?q?=E8=A7=84=E5=88=99=E7=A6=81=E7=94=A8=E6=9D=A1=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/globalGroups.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/globalGroups.ts b/src/globalGroups.ts index e122b2dd..77f576f9 100644 --- a/src/globalGroups.ts +++ b/src/globalGroups.ts @@ -63,7 +63,7 @@ function filterAppsByGroup(apps: any[], groupNamePrefix: string): string[] { (a) => a.groups.filter((g: { name: string }) => g.name.startsWith(groupNamePrefix), - ).length === 1, + ).length > 0, ) .map((a) => a.id); }