Skip to content

Commit 36fffaa

Browse files
committed
container step bug fixed.
1 parent 359784f commit 36fffaa

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/workspace/container-step/container-step-component.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@ export class ContainerStepComponent implements StepComponent {
7676
public validate(): boolean {
7777
const isValid = this.configuration.validator ? this.configuration.validator(this.step) : true;
7878
this.view.setIsValid(isValid);
79-
return isValid && this.view.sequenceComponent.validate();
79+
const isSequenceValid = this.view.sequenceComponent.validate();
80+
return isValid && isSequenceValid;
8081
}
8182
}

0 commit comments

Comments
 (0)