From 77950e48c76f4a3b29d01831d43039caba29888a Mon Sep 17 00:00:00 2001
From: wwf <1971391498@qq.com>
Date: 星期二, 18 十一月 2025 14:12:42 +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