diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/store/proxies.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/store/proxies.tsx b/src/store/proxies.tsx index 0505fce..b9927ea 100644 --- a/src/store/proxies.tsx +++ b/src/store/proxies.tsx @@ -330,7 +330,7 @@ function retrieveGroupNamesFrom(proxies: Record<string, ProxyItem>) { if (p.all && Array.isArray(p.all)) { groupNames.push(prop); if (prop === 'GLOBAL') { - globalAll = p.all; + globalAll = Array.from(p.all); } } else if (NonProxyTypes.indexOf(p.type) < 0) { proxyNames.push(prop); |
