From 09ebb5106f0e73f885134c1cbc47bdd9e9ac803d Mon Sep 17 00:00:00 2001 From: Jihyun Kang Date: Fri, 30 Aug 2024 03:19:18 +0900 Subject: [PATCH] refactor: replace "summary" path with "start" --- react/src/App.tsx | 2 +- react/src/components/MainLayout/WebUISider.tsx | 7 ++++--- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/react/src/App.tsx b/react/src/App.tsx index 78353b3472..ee0c7119eb 100644 --- a/react/src/App.tsx +++ b/react/src/App.tsx @@ -123,7 +123,7 @@ const router = createBrowserRouter([ element: , }, { - path: '/summary', + path: '/start', Component: () => { const { token } = theme.useToken(); return ( diff --git a/react/src/components/MainLayout/WebUISider.tsx b/react/src/components/MainLayout/WebUISider.tsx index ae2351eeaf..89867eeaac 100644 --- a/react/src/components/MainLayout/WebUISider.tsx +++ b/react/src/components/MainLayout/WebUISider.tsx @@ -19,6 +19,7 @@ import { FileDoneOutlined, HddOutlined, InfoCircleOutlined, + PlayCircleOutlined, RocketOutlined, SolutionOutlined, ToolOutlined, @@ -71,9 +72,9 @@ const WebUISider: React.FC = (props) => { const generalMenu = filterEmptyItem([ { - label: t('webui.menu.Summary'), - icon: , - key: 'summary', + label: 'Start', // t('webui.menu.Summary'), + icon: , + key: 'start', // 'summary', }, { label: t('webui.menu.Sessions'),