mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-08-13 20:16:00 +08:00
fix(workflow): correct edge type mapping typo (#13988)
This commit is contained in:
parent
3467ad3d02
commit
ee49d321c5
@ -82,6 +82,7 @@ import {
|
|||||||
initialNodes,
|
initialNodes,
|
||||||
} from './utils'
|
} from './utils'
|
||||||
import {
|
import {
|
||||||
|
CUSTOM_EDGE,
|
||||||
CUSTOM_NODE,
|
CUSTOM_NODE,
|
||||||
DSL_EXPORT_CHECK,
|
DSL_EXPORT_CHECK,
|
||||||
ITERATION_CHILDREN_Z_INDEX,
|
ITERATION_CHILDREN_Z_INDEX,
|
||||||
@ -103,7 +104,7 @@ const nodeTypes = {
|
|||||||
[CUSTOM_ITERATION_START_NODE]: CustomIterationStartNode,
|
[CUSTOM_ITERATION_START_NODE]: CustomIterationStartNode,
|
||||||
}
|
}
|
||||||
const edgeTypes = {
|
const edgeTypes = {
|
||||||
[CUSTOM_NODE]: CustomEdge,
|
[CUSTOM_EDGE]: CustomEdge,
|
||||||
}
|
}
|
||||||
|
|
||||||
type WorkflowProps = {
|
type WorkflowProps = {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user