mirror of
https://github.com/clash-verge-rev/clash-verge-rev.git
synced 2024-11-15 19:22:26 +08:00
fix: something
This commit is contained in:
parent
54af0b675d
commit
a211fc7c97
|
@ -54,6 +54,7 @@ const Layout = () => {
|
|||
// the clash info may be updated
|
||||
await getAxios(true);
|
||||
mutate("getProxies");
|
||||
mutate("getVersion");
|
||||
mutate("getClashConfig");
|
||||
});
|
||||
|
||||
|
|
|
@ -42,7 +42,7 @@ const ProxyPage = () => {
|
|||
// 仅mode为全局和直连的时候展示global分组
|
||||
const displayGroups = useMemo(() => {
|
||||
if (!global) return groups;
|
||||
if (curMode === "global" || curMode === "direct")
|
||||
if (curMode === "global" || curMode === "direct" || groups.length === 0)
|
||||
return [global, ...groups];
|
||||
return groups;
|
||||
}, [global, groups, curMode]);
|
||||
|
|
Loading…
Reference in New Issue
Block a user