fix(workflow): correct edge type mapping typo (#13988)

pull/14033/head
SToneX 12 months ago committed by GitHub
parent 3467ad3d02
commit ee49d321c5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -82,6 +82,7 @@ import {
initialNodes,
} from './utils'
import {
CUSTOM_EDGE,
CUSTOM_NODE,
DSL_EXPORT_CHECK,
ITERATION_CHILDREN_Z_INDEX,
@ -103,7 +104,7 @@ const nodeTypes = {
[CUSTOM_ITERATION_START_NODE]: CustomIterationStartNode,
}
const edgeTypes = {
[CUSTOM_NODE]: CustomEdge,
[CUSTOM_EDGE]: CustomEdge,
}
type WorkflowProps = {

Loading…
Cancel
Save