From 936e593a4fc4f8c83af5e0403c5e961fb35cda4e Mon Sep 17 00:00:00 2001 From: "Apple\\Apple" Date: Tue, 10 Jun 2025 02:12:52 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=A8=20style(LogsTable):=20replace=20Ic?= =?UTF-8?q?onForward=20with=20Route=20icon=20for=20model=20redirection?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Remove IconForward import from @douyinfe/semi-icons - Add Route icon import from lucide-react - Update model redirection indicator in LogsTable component The Route icon better represents the concept of model redirection compared to the generic forward arrow, providing clearer visual context for users when models are mapped to different upstream models. --- web/src/components/table/LogsTable.js | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/web/src/components/table/LogsTable.js b/web/src/components/table/LogsTable.js index 217f8050..6c8996a0 100644 --- a/web/src/components/table/LogsTable.js +++ b/web/src/components/table/LogsTable.js @@ -47,7 +47,8 @@ import { } from '@douyinfe/semi-illustrations'; import { ITEMS_PER_PAGE } from '../../constants'; import Paragraph from '@douyinfe/semi-ui/lib/es/typography/paragraph'; -import { IconSetting, IconSearch, IconForward } from '@douyinfe/semi-icons'; +import { IconSetting, IconSearch } from '@douyinfe/semi-icons'; +import { Route } from 'lucide-react'; const { Text } = Typography; @@ -232,6 +233,11 @@ const LogsTable = () => { onClick: (event) => { copyText(event, record.model_name).then((r) => { }); }, + suffixIcon: ( + + ), })}