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/template-transform/panel.tsx | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/app/components/workflow/nodes/template-transform/panel.tsx b/app/components/workflow/nodes/template-transform/panel.tsx index e120482..2038eea 100644 --- a/app/components/workflow/nodes/template-transform/panel.tsx +++ b/app/components/workflow/nodes/template-transform/panel.tsx @@ -49,7 +49,7 @@ return ( <div className='mt-2'> - <div className='space-y-4 px-4 pb-4'> + <div className='px-4 pb-4 space-y-4'> <Field title={t(`${i18nPrefix}.inputVars`)} @@ -81,13 +81,13 @@ headerRight={ <div className='flex items-center'> <a - className='flex h-[18px] items-center space-x-0.5 text-xs font-normal text-text-tertiary' + className='flex items-center space-x-0.5 h-[18px] text-xs font-normal text-gray-500' href="https://jinja.palletsprojects.com/en/3.1.x/templates/" target='_blank'> <span>{t(`${i18nPrefix}.codeSupportTip`)}</span> - <RiQuestionLine className='h-3 w-3' /> + <RiQuestionLine className='w-3 h-3' /> </a> - <div className='mx-1.5 h-3 w-px bg-divider-regular'></div> + <div className='mx-1.5 w-px h-3 bg-gray-200'></div> </div> } value={inputs.template} -- Gitblit v1.8.0