From c5f7a5365698462a505b683c2e4d8a4a5250d29e Mon Sep 17 00:00:00 2001 From: zhaowei Date: Fri, 25 Apr 2025 15:06:24 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=9C=BA=E5=99=A8=E5=AD=A6=E4=B9=A0?= =?UTF-8?q?=E6=96=87=E6=9C=AC=E5=88=86=E7=B1=BB=E5=8F=AF=E8=A7=86=E5=8C=96?= =?UTF-8?q?=E7=BB=93=E6=9E=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- react-ui/src/components/IFramePage/index.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/react-ui/src/components/IFramePage/index.tsx b/react-ui/src/components/IFramePage/index.tsx index 65777e5d..d8f95821 100644 --- a/react-ui/src/components/IFramePage/index.tsx +++ b/react-ui/src/components/IFramePage/index.tsx @@ -43,11 +43,11 @@ const getRequestAPI = (type: IframePageType): (() => Promise) => { // 知识图谱 return () => Promise.resolve({ code: 200, data: `http://172.168.15.197:32701` }); case IframePageType.TensorBoard: - // 知识图谱 + // TensorBoard return () => Promise.resolve({ code: 200, - data: SessionStorage.getItem(SessionStorage.editorUrlKey), + data: SessionStorage.getItem(SessionStorage.tensorBoardUrlKey), }); } };