Sfoglia il codice sorgente

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

tags/1.0.0
SToneX 8 mesi fa
parent
commit
ee49d321c5
Nessun account collegato all'indirizzo email del committer
1 ha cambiato i file con 2 aggiunte e 1 eliminazioni
  1. 2
    1
      web/app/components/workflow/index.tsx

+ 2
- 1
web/app/components/workflow/index.tsx Vedi File

@@ -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…
Annulla
Salva