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 770df05 commit b43bddbCopy full SHA for b43bddb
CHANGELOG.md
@@ -6,7 +6,7 @@ We added a new type of a validator: step validator. It allows to restrict a plac
6
createStepModel<WriteSocketStep>('writeSocket', 'task', step => {
7
step.validator({
8
validate(context: StepValidatorContext) {
9
- const parentTypes = context.getParentStepTypes()
+ const parentTypes = context.getParentStepTypes();
10
return parentTypes.includes('socket');
11
? null // No errors
12
: 'The write socket step must be inside a socket.';
0 commit comments