Showing
1 changed file
with
2 additions
and
2 deletions
... | ... | @@ -126,7 +126,7 @@ export abstract class RuleNodeConfigurationComponent extends PageComponent imple |
126 | 126 | control = control.get(part); |
127 | 127 | } |
128 | 128 | control.valueChanges.subscribe(() => { |
129 | - this.updateValidators(true); | |
129 | + this.updateValidators(true, trigger); | |
130 | 130 | }); |
131 | 131 | } |
132 | 132 | this.configForm().valueChanges.subscribe((updated: RuleNodeConfiguration) => { |
... | ... | @@ -139,7 +139,7 @@ export abstract class RuleNodeConfigurationComponent extends PageComponent imple |
139 | 139 | this.updateValidators(false); |
140 | 140 | } |
141 | 141 | |
142 | - protected updateValidators(emitEvent: boolean) { | |
142 | + protected updateValidators(emitEvent: boolean, trigger?: string) { | |
143 | 143 | } |
144 | 144 | |
145 | 145 | protected validatorTriggers(): string[] { | ... | ... |