Skip to content

Commit 7c2d13a

Browse files
Update products/workflows/frontend/Workflows/WorkflowsTable.tsx
Co-authored-by: greptile-apps[bot] <165735046+greptile-apps[bot]@users.noreply.github.com>
1 parent 260ad79 commit 7c2d13a

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

products/workflows/frontend/Workflows/WorkflowsTable.tsx

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,18 @@ import { urls } from 'scenes/urls'
1919

2020
import { WorkflowsSceneProps } from '../WorkflowsScene'
2121

22+
import { WorkflowsSceneProps } from '../WorkflowsScene'
23+
import { getHogFlowStep } from './hogflows/steps/HogFlowSteps'
24+
import { HogFlow } from './hogflows/types'
25+
import { newWorkflowLogic } from './newWorkflowLogic'
26+
import { workflowLogic } from './workflowLogic'
27+
import { WorkflowStatusFilter, workflowsLogic } from './workflowsLogic'
28+
2229
const STATUS_CONFIG: Record<string, { label: string; type: 'success' | 'default' | 'muted' }> = {
2330
active: { label: 'Active', type: 'success' },
2431
draft: { label: 'Draft', type: 'default' },
2532
archived: { label: 'Archived', type: 'muted' },
2633
}
27-
import { getHogFlowStep } from './hogflows/steps/HogFlowSteps'
2834
import { HogFlow } from './hogflows/types'
2935
import { newWorkflowLogic } from './newWorkflowLogic'
3036
import { workflowLogic } from './workflowLogic'

0 commit comments

Comments
 (0)