fix(Wait Node): Allow wait node to accept 0 waiting time input (#19159)

Co-authored-by: Elias Meire <elias@meire.dev>
This commit is contained in:
Antoine Bellion
2025-09-04 21:49:26 +02:00
committed by GitHub
parent 63672ad797
commit 59684039ee
3 changed files with 23 additions and 8 deletions

View File

@@ -503,7 +503,7 @@ export class Wait extends Webhook {
if (!validateWaitAmount(waitAmount)) {
throw new NodeOperationError(
context.getNode(),
'Invalid wait amount. It must be a positive number.',
'Invalid wait amount. Please enter a number that is 0 or greater.',
);
}