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-setting-button.tsx | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/app/components/app/configuration/config/agent-setting-button.tsx b/app/components/app/configuration/config/agent-setting-button.tsx
index b0a93d5..f50f778 100644
--- a/app/components/app/configuration/config/agent-setting-button.tsx
+++ b/app/components/app/configuration/config/agent-setting-button.tsx
@@ -2,9 +2,9 @@
import type { FC } from 'react'
import React, { useState } from 'react'
import { useTranslation } from 'react-i18next'
-import { RiSettings2Line } from '@remixicon/react'
import AgentSetting from './agent/agent-setting'
import Button from '@/app/components/base/button'
+import { Settings01 } from '@/app/components/base/icons/src/vender/line/general'
import type { AgentConfig } from '@/models/debug'
type Props = {
@@ -25,8 +25,8 @@
return (
<>
- <Button onClick={() => setIsShowAgentSetting(true)} className='mr-2 shrink-0'>
- <RiSettings2Line className='mr-1 h-4 w-4 text-text-tertiary' />
+ <Button onClick={() => setIsShowAgentSetting(true)} className='shrink-0 mr-2'>
+ <Settings01 className='mr-1 w-4 h-4 text-gray-500' />
{t('appDebug.agent.setting.name')}
</Button>
{isShowAgentSetting && (
--
Gitblit v1.8.0