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/end/panel.tsx | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/app/components/workflow/nodes/end/panel.tsx b/app/components/workflow/nodes/end/panel.tsx index 2ad90ff..a74ba51 100644 --- a/app/components/workflow/nodes/end/panel.tsx +++ b/app/components/workflow/nodes/end/panel.tsx @@ -1,4 +1,4 @@ -import type { FC } from 'react' +import { type FC } from 'react' import React from 'react' import { useTranslation } from 'react-i18next' import useConfig from './use-config' @@ -6,7 +6,7 @@ import VarList from '@/app/components/workflow/nodes/_base/components/variable/var-list' import Field from '@/app/components/workflow/nodes/_base/components/field' import AddButton from '@/app/components/base/button/add-button' -import type { NodePanelProps } from '@/app/components/workflow/types' +import { type NodePanelProps } from '@/app/components/workflow/types' const i18nPrefix = 'workflow.nodes.end' @@ -26,7 +26,7 @@ const outputs = inputs.outputs 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}.output.variable`)} -- Gitblit v1.8.0