Skip to content

Commit bdb3e8d

Browse files
authored
fix: rewrite false descriptions (#70)
1 parent 89ce1ee commit bdb3e8d

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

nodes/Apify/resources/actor-tasks/run-task/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ const rawOption: INodePropertyOptions = {
1010
value: 'Run task',
1111
action: 'Run task',
1212
description:
13-
'Runs an Actor task and immediately returns its details without waiting for the run to complete. You can optionally override the Actor’s input configuration by providing a custom body.',
13+
'Runs an Actor Task and return all associated details. You can optionally override the Actor’s input configuration by providing a custom body.',
1414
};
1515

1616
const { properties, option } = runHooks(rawOption, rawProperties);

nodes/Apify/resources/actor-tasks/run-task/properties.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ export const properties: INodeProperties[] = [
4949
displayName: 'Wait for Finish',
5050
name: 'waitForFinish',
5151
description:
52-
'Whether to wait for the run to finish. If true, the node will poll the run status until it reaches a terminal state (SUCCEEDED, FAILED, TIMED-OUT, ABORTED) or 5 minutes have passed. If false, the node will return immediately after starting the run.',
52+
'Whether or not to wait for the run to finish before continuing. If true, the node will wait for the run to complete (successfully or not) before moving to the next node. Note: The maximum time the workflow will wait is limited by the workflow timeout setting in your n8n configuration.',
5353
default: true,
5454
type: 'boolean',
5555
displayOptions: {

nodes/Apify/resources/actors/run-actor/index.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ const rawOption: INodePropertyOptions = {
99
name: 'Run an Actor',
1010
value: 'Run actor',
1111
action: 'Run an Actor',
12-
description: 'Runs an Actor and immediately returns without waiting for the run to finish',
12+
description:
13+
'Runs an Actor. You can override the Actor’s input configuration by providing a custom body, which will override the prefilled input values.',
1314
};
1415

1516
const { properties, option } = runHooks(rawOption, rawProperties);

nodes/Apify/resources/actors/run-actor/properties.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ export const properties: INodeProperties[] = [
4747
displayName: 'Wait for Finish',
4848
name: 'waitForFinish',
4949
description:
50-
'Whether to wait for the run to finish before continuing. If true, the node will wait for the run to complete (successfully or not) before moving to the next node. Note: The maximum time the workflow will wait is limited by the workflow timeout setting in your n8n configuration.',
50+
'Whether or not to wait for the run to finish before continuing. If true, the node will wait for the run to complete (successfully or not) before moving to the next node. Note: The maximum time the workflow will wait is limited by the workflow timeout setting in your n8n configuration.',
5151
default: true,
5252
type: 'boolean',
5353
displayOptions: {

0 commit comments

Comments
 (0)