Skip to content
This repository has been archived by the owner on Feb 10, 2025. It is now read-only.

Commit

Permalink
perf: 优化全局规则禁用条件
Browse files Browse the repository at this point in the history
  • Loading branch information
AIsouler committed Mar 7, 2024
1 parent 5fad0c6 commit f54ebcf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/globalGroups.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down

0 comments on commit f54ebcf

Please sign in to comment.