Skip to content

Commit 582b94e

Browse files
author
drowl87
committed
refactor property descriptions in DynamicNode for clarity and consistency
1 parent d4df681 commit 582b94e

File tree

1 file changed

+5
-7
lines changed

1 file changed

+5
-7
lines changed

nodes/DynamicNode/DynamicNode.node.ts

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -29,20 +29,18 @@ export class DynamicNode implements INodeType {
2929
description: 'Paste in your exported node JSON here',
3030
},
3131
{
32-
displayName: 'Execute individually per item?',
32+
displayName: 'Execute Individually Per Item?',
3333
name: 'executeIndividually',
3434
type: 'boolean',
3535
default: true,
36-
description:
37-
'If enabled, each input item will run in its own sub-workflow. Disable only if your node can handle bulk items safely.',
36+
description: 'Whether to execute the sub-workflow once per input item. If false, all items are passed in together.',
3837
},
3938
{
40-
displayName: 'Disable waiting for child workflow(s) to finish?',
41-
name: 'doNotWaitToFinish',
39+
displayName: 'Disable Waiting for Child Workflow(s) to Finish?',
40+
name: 'disableWait',
4241
type: 'boolean',
4342
default: false,
44-
description:
45-
'⚠️ Advanced: If enabled, the parent will not wait for results from the sub-workflow. This may break downstream logic or lose returned data.',
43+
description: 'Whether to return immediately after starting the sub-workflow. Advanced: if enabled, parent will not wait for results and outputs may be empty.',
4644
},
4745
],
4846
};

0 commit comments

Comments
 (0)