fix validation reactions

This commit is contained in:
vchikalkin 2023-03-07 14:13:38 +03:00
parent 95bb7e0132
commit 441c19b49e
8 changed files with 20 additions and 2 deletions

View File

@ -27,6 +27,9 @@ export default function reactions(context: ProcessContext) {
});
});
}
},
{
delay: 100,
}
);
}

View File

@ -27,6 +27,9 @@ export default function reactions(context: ProcessContext) {
});
});
}
},
{
delay: 100,
}
);
}

View File

@ -508,6 +508,9 @@ export function validation(context: ProcessContext) {
});
});
}
},
{
delay: 100,
}
);
}

View File

@ -159,7 +159,7 @@ export function validation(context: ProcessContext) {
}
},
{
delay: 50,
delay: 100,
equals: comparer.structural,
}
);

View File

@ -58,6 +58,9 @@ export default function reactions(context: ProcessContext) {
});
});
}
},
{
delay: 100,
}
);
}

View File

@ -49,7 +49,7 @@ export default function reactions(context: ProcessContext) {
}
},
{
delay: 50,
delay: 100,
equals: comparer.structural,
}
);

View File

@ -37,6 +37,9 @@ export default function reactions(context: ProcessContext) {
});
});
}
},
{
delay: 100,
}
);
}

View File

@ -273,6 +273,9 @@ export function validation(context: ProcessContext) {
});
});
}
},
{
delay: 100,
}
);
}