From 88591454ec6766689cea30839fa259ac4848fa88 Mon Sep 17 00:00:00 2001 From: Junyi Date: Mon, 30 Jun 2025 15:25:57 +0800 Subject: [PATCH] fix(plugin-workflow): fix cycling import (#7134) --- .../@nocobase/plugin-workflow/src/client/WorkflowPane.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/packages/plugins/@nocobase/plugin-workflow/src/client/WorkflowPane.tsx b/packages/plugins/@nocobase/plugin-workflow/src/client/WorkflowPane.tsx index ed3521445f..92beca68a0 100644 --- a/packages/plugins/@nocobase/plugin-workflow/src/client/WorkflowPane.tsx +++ b/packages/plugins/@nocobase/plugin-workflow/src/client/WorkflowPane.tsx @@ -30,13 +30,15 @@ import { WorkflowLink } from './WorkflowLink'; import OpenDrawer from './components/OpenDrawer'; import { workflowSchema } from './schemas/workflows'; import { ExecutionStatusSelect, ExecutionStatusColumn } from './components/ExecutionStatus'; -import WorkflowPlugin, { ExecutionStatusOptions, RadioWithTooltip } from '.'; +import WorkflowPlugin from '.'; +import { RadioWithTooltip } from './components'; import { useRefreshActionProps } from './hooks/useRefreshActionProps'; import { useTranslation } from 'react-i18next'; import { TriggerOptionRender } from './components/TriggerOptionRender'; import { CategoryTabs } from './WorkflowCategoryTabs'; import { EnumerationField } from './components/EmunerationField'; import { useWorkflowFilterActionProps } from './hooks/useWorkflowFilterActionProps'; +import { ExecutionStatusOptions } from './constants'; function SyncOptionSelect(props) { const field = useField();