From 196f2b445fdbdaa0038134ff215b0a9cbfc3ba67 Mon Sep 17 00:00:00 2001 From: balibabu Date: Tue, 28 May 2024 11:22:56 +0800 Subject: [PATCH] fix: fixed the issue of 404 error in the user settings page of the demo site (#948) ### What problem does this PR solve? fix: fixed the issue of 404 error in the user settings page of the demo site #947 ### Type of change - [x] Bug Fix (non-breaking change which fixes an issue) --- web/src/interfaces/database/knowledge.ts | 4 ++-- web/src/pages/user-setting/sidebar/index.tsx | 5 ++++- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/web/src/interfaces/database/knowledge.ts b/web/src/interfaces/database/knowledge.ts index 654f59702..048848c76 100644 --- a/web/src/interfaces/database/knowledge.ts +++ b/web/src/interfaces/database/knowledge.ts @@ -78,7 +78,7 @@ export interface IChunk { chunk_id: string; content_with_weight: string; doc_id: string; - docnm_kwd: string; + doc_name: string; img_id: string; important_kwd: any[]; positions: number[][]; @@ -89,7 +89,7 @@ export interface ITestingChunk { content_ltks: string; content_with_weight: string; doc_id: string; - docnm_kwd: string; + doc_name: string; img_id: string; important_kwd: any[]; kb_id: string; diff --git a/web/src/pages/user-setting/sidebar/index.tsx b/web/src/pages/user-setting/sidebar/index.tsx index 03764450e..5f16871cd 100644 --- a/web/src/pages/user-setting/sidebar/index.tsx +++ b/web/src/pages/user-setting/sidebar/index.tsx @@ -1,3 +1,4 @@ +import { Domain } from '@/constants/common'; import { useSecondPathName } from '@/hooks/routeHook'; import type { MenuProps } from 'antd'; import { Flex, Menu } from 'antd'; @@ -23,7 +24,9 @@ const SideBar = () => { const { version, fetchSystemVersion } = useFetchSystemVersion(); useEffect(() => { - fetchSystemVersion(); + if (location.host !== Domain) { + fetchSystemVersion(); + } }, [fetchSystemVersion]); function getItem(