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 359784f commit 36fffaaCopy full SHA for 36fffaa
src/workspace/container-step/container-step-component.ts
@@ -76,6 +76,7 @@ export class ContainerStepComponent implements StepComponent {
76
public validate(): boolean {
77
const isValid = this.configuration.validator ? this.configuration.validator(this.step) : true;
78
this.view.setIsValid(isValid);
79
- return isValid && this.view.sequenceComponent.validate();
+ const isSequenceValid = this.view.sequenceComponent.validate();
80
+ return isValid && isSequenceValid;
81
}
82
0 commit comments