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/workflow/nodes/http/components/edit-body/index.tsx | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/components/workflow/nodes/http/components/edit-body/index.tsx b/app/components/workflow/nodes/http/components/edit-body/index.tsx index bfdb0b3..b58cc68 100644 --- a/app/components/workflow/nodes/http/components/edit-body/index.tsx +++ b/app/components/workflow/nodes/http/components/edit-body/index.tsx @@ -135,7 +135,7 @@ {/* body type */} <div className='flex flex-wrap'> {allTypes.map(t => ( - <label key={t} htmlFor={`body-type-${t}`} className='mr-4 flex h-7 items-center space-x-2'> + <label key={t} htmlFor={`body-type-${t}`} className='mr-4 flex items-center h-7 space-x-2'> <input type="radio" id={`body-type-${t}`} @@ -144,7 +144,7 @@ onChange={handleTypeChange} disabled={readonly} /> - <div className='text-[13px] font-normal leading-[18px] text-text-secondary'>{bodyTextMap[t]}</div> + <div className='leading-[18px] text-[13px] font-normal text-gray-700'>{bodyTextMap[t]}</div> </label> ))} </div> -- Gitblit v1.8.0