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/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