diff --git a/projects/workflows-creator/src/lib/builder/group/group.component.ts b/projects/workflows-creator/src/lib/builder/group/group.component.ts index a091558..fe28b9f 100644 --- a/projects/workflows-creator/src/lib/builder/group/group.component.ts +++ b/projects/workflows-creator/src/lib/builder/group/group.component.ts @@ -557,6 +557,9 @@ export class GroupComponent implements OnInit, AfterViewInit { element: NodeWithInput, input: WorkflowPrompt, ) { + if (input.inputKey === 'email') { + return; + } const currentIndex = element.inputs.findIndex( i => i.getIdentifier() === input.getIdentifier(), );