We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 601d19d commit a5ca97aCopy full SHA for a5ca97a
ui/src/workflow/nodes/condition-node/index.vue
@@ -277,6 +277,12 @@ function deleteCondition(index: number, cIndex: number) {
277
.map((item: any) => item.id)
278
)
279
refreshBranchAnchor(list, false)
280
+
281
+ list.forEach((item: any, index: number) => {
282
+ if (item.type === 'ELSE IF ' + (index + 1)) {
283
+ item.type = 'ELSE IF ' + index
284
+ }
285
+ })
286
}
287
set(props.nodeModel.properties.node_data, 'branch', list)
288
0 commit comments