mirror of
https://github.com/clash-verge-rev/clash-verge-rev.git
synced 2024-11-16 03:32:36 +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
|
// the clash info may be updated
|
||||||
await getAxios(true);
|
await getAxios(true);
|
||||||
mutate("getProxies");
|
mutate("getProxies");
|
||||||
|
mutate("getVersion");
|
||||||
mutate("getClashConfig");
|
mutate("getClashConfig");
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
|
@ -42,7 +42,7 @@ const ProxyPage = () => {
|
||||||
// 仅mode为全局和直连的时候展示global分组
|
// 仅mode为全局和直连的时候展示global分组
|
||||||
const displayGroups = useMemo(() => {
|
const displayGroups = useMemo(() => {
|
||||||
if (!global) return groups;
|
if (!global) return groups;
|
||||||
if (curMode === "global" || curMode === "direct")
|
if (curMode === "global" || curMode === "direct" || groups.length === 0)
|
||||||
return [global, ...groups];
|
return [global, ...groups];
|
||||||
return groups;
|
return groups;
|
||||||
}, [global, groups, curMode]);
|
}, [global, groups, curMode]);
|
||||||
|
|
Loading…
Reference in New Issue
Block a user