mirror of
https://github.com/hamster1963/nezha-dash.git
synced 2025-04-24 21:10:45 +08:00
fix(router): error in the back button after refreshing the first time you enter the detail page
This commit is contained in:
parent
926d45b4be
commit
348519ed5b
@ -29,12 +29,9 @@ export default function ServerDetailClient({
|
||||
}, []);
|
||||
|
||||
useEffect(() => {
|
||||
const previousPath = sessionStorage.getItem("lastPath");
|
||||
const previousPath = sessionStorage.getItem("fromMainPage");
|
||||
if (previousPath) {
|
||||
setHasHistory(true);
|
||||
} else {
|
||||
const currentPath = window.location.pathname;
|
||||
sessionStorage.setItem("lastPath", currentPath);
|
||||
}
|
||||
}, []);
|
||||
|
||||
|
@ -29,8 +29,12 @@ export default function ServerCard({
|
||||
const fixedTopServerName =
|
||||
getEnv("NEXT_PUBLIC_FixedTopServerName") === "true";
|
||||
|
||||
const saveSession = () => {
|
||||
sessionStorage.setItem("fromMainPage", "true");
|
||||
};
|
||||
|
||||
return online ? (
|
||||
<Link href={`/${id}`} prefetch={true}>
|
||||
<Link onClick={saveSession} href={`/${id}`} prefetch={true}>
|
||||
<Card
|
||||
className={cn(
|
||||
"flex flex-col items-center justify-start gap-3 p-3 md:px-5 cursor-pointer",
|
||||
|
Loading…
Reference in New Issue
Block a user