From a430284aa21e3ae1f0d5654e55b2ad2852519cc2 Mon Sep 17 00:00:00 2001 From: wwf <yearningwang@iqtogether.com> Date: 星期三, 04 六月 2025 15:17:49 +0800 Subject: [PATCH] 初始化 --- app/components/base/agent-log-modal/iteration.tsx | 9 ++++----- 1 files changed, 4 insertions(+), 5 deletions(-) diff --git a/app/components/base/agent-log-modal/iteration.tsx b/app/components/base/agent-log-modal/iteration.tsx index d6f8e84..2bb04d1 100644 --- a/app/components/base/agent-log-modal/iteration.tsx +++ b/app/components/base/agent-log-modal/iteration.tsx @@ -2,9 +2,8 @@ import { useTranslation } from 'react-i18next' import type { FC } from 'react' import ToolCall from './tool-call' -import Divider from '@/app/components/base/divider' -import type { AgentIteration } from '@/models/log' import cn from '@/utils/classnames' +import type { AgentIteration } from '@/models/log' type Props = { isFinal: boolean @@ -19,12 +18,12 @@ <div className={cn('px-4 py-2')}> <div className='flex items-center'> {isFinal && ( - <div className='mr-3 shrink-0 text-xs font-semibold leading-[18px] text-text-tertiary'>{t('appLog.agentLogDetail.finalProcessing')}</div> + <div className='shrink-0 mr-3 text-gray-500 text-xs leading-[18px] font-semibold'>{t('appLog.agentLogDetail.finalProcessing')}</div> )} {!isFinal && ( - <div className='mr-3 shrink-0 text-xs font-semibold leading-[18px] text-text-tertiary'>{`${t('appLog.agentLogDetail.iteration').toUpperCase()} ${index}`}</div> + <div className='shrink-0 mr-3 text-gray-500 text-xs leading-[18px] font-semibold'>{`${t('appLog.agentLogDetail.iteration').toUpperCase()} ${index}`}</div> )} - <Divider bgStyle='gradient' className='mx-0 h-[1px] grow'/> + <div className='grow h-[1px] bg-gradient-to-r from-[#f3f4f6] to-gray-50'></div> </div> <ToolCall isLLM -- Gitblit v1.8.0