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), }); } };