Skip to content

Commit d0a1cdb

Browse files
authored
feat(core): allow email to get edited without removing sequence selection (#90)
1 parent 2a7d458 commit d0a1cdb

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

projects/workflows-creator/src/lib/builder/group/group.component.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -557,6 +557,9 @@ export class GroupComponent<E> implements OnInit, AfterViewInit {
557557
element: NodeWithInput<E>,
558558
input: WorkflowPrompt,
559559
) {
560+
if (input.inputKey === 'email') {
561+
return;
562+
}
560563
const currentIndex = element.inputs.findIndex(
561564
i => i.getIdentifier() === input.getIdentifier(),
562565
);

0 commit comments

Comments
 (0)