mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-11 21:07:28 -08:00
fix: Tweak the copy for Add more warnings to nodes (no-changelog) (#10697)
This commit is contained in:
parent
db6e8326c7
commit
08abaf9eb2
|
@ -69,7 +69,7 @@ describe('getGenericHints', () => {
|
||||||
expect(hints).toEqual([
|
expect(hints).toEqual([
|
||||||
{
|
{
|
||||||
message:
|
message:
|
||||||
"The operation is performed for each input item. Use the 'Execute Once' setting to execute it only once for the first input item.",
|
'This node runs multiple times, once for each input item. Use ‘Execute Once’ in the node settings if you want to run it only once.',
|
||||||
location: 'outputPane',
|
location: 'outputPane',
|
||||||
},
|
},
|
||||||
]);
|
]);
|
||||||
|
|
|
@ -1223,7 +1223,7 @@ export function getGenericHints({
|
||||||
if (!executeOnce) {
|
if (!executeOnce) {
|
||||||
nodeHints.push({
|
nodeHints.push({
|
||||||
message:
|
message:
|
||||||
"The operation is performed for each input item. Use the 'Execute Once' setting to execute it only once for the first input item.",
|
'This node runs multiple times, once for each input item. Use ‘Execute Once’ in the node settings if you want to run it only once.',
|
||||||
location: 'outputPane',
|
location: 'outputPane',
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
|
@ -2149,7 +2149,7 @@ export class HttpRequestV3 implements INodeType {
|
||||||
[
|
[
|
||||||
{
|
{
|
||||||
message:
|
message:
|
||||||
"The result has a 'data' property which contains an array of items, you can split this array into separate items by using the 'Split Out' node",
|
'To split the contents of ‘data’ into separate items for easier processing, add a ‘Spilt Out’ node after this one',
|
||||||
location: 'outputPane',
|
location: 'outputPane',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
|
|
Loading…
Reference in a new issue