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/app/configuration/config/agent/agent-setting/item-panel.tsx |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/app/components/app/configuration/config/agent/agent-setting/item-panel.tsx b/app/components/app/configuration/config/agent/agent-setting/item-panel.tsx
index 6512e11..99c2478 100644
--- a/app/components/app/configuration/config/agent/agent-setting/item-panel.tsx
+++ b/app/components/app/configuration/config/agent/agent-setting/item-panel.tsx
@@ -5,10 +5,10 @@
 import Tooltip from '@/app/components/base/tooltip'
 type Props = {
   className?: string
-  icon: React.JSX.Element
+  icon: JSX.Element
   name: string
   description: string
-  children: React.JSX.Element
+  children: JSX.Element
 }
 
 const ItemPanel: FC<Props> = ({
@@ -19,10 +19,10 @@
   children,
 }) => {
   return (
-    <div className={cn(className, 'flex h-12 items-center justify-between rounded-lg bg-background-section-burn px-3')}>
+    <div className={cn(className, 'flex justify-between items-center h-12 px-3 rounded-lg bg-gray-50')}>
       <div className='flex items-center'>
         {icon}
-        <div className='ml-3 mr-1 text-sm font-semibold leading-6 text-text-secondary'>{name}</div>
+        <div className='ml-3 mr-1 leading-6 text-sm font-semibold text-gray-800'>{name}</div>
         <Tooltip
           popupContent={
             <div className='w-[180px]'>

--
Gitblit v1.8.0