From 08ae9c582592efab44f0047e8eb9ad411dee1927 Mon Sep 17 00:00:00 2001 From: yangdx Date: Thu, 20 Mar 2025 12:29:22 +0800 Subject: [PATCH] Fix graph data reloading problem after login token expired --- lightrag_webui/src/services/navigation.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/lightrag_webui/src/services/navigation.ts b/lightrag_webui/src/services/navigation.ts index 12019a0e..d06c86c4 100644 --- a/lightrag_webui/src/services/navigation.ts +++ b/lightrag_webui/src/services/navigation.ts @@ -27,6 +27,7 @@ class NavigationService { graphStore.setGraphDataFetchAttempted(false); graphStore.setLabelsFetchAttempted(false); graphStore.setSigmaInstance(null); + graphStore.setIsFetching(false); // Reset isFetching state to prevent data loading issues // Reset backend state useBackendState.getState().clear();