Skip to content

Commit

Permalink
fix: Tweak the copy for Add more warnings to nodes (no-changelog) (#1…
Browse files Browse the repository at this point in the history
  • Loading branch information
ShireenMissi authored and tomi committed Sep 6, 2024
1 parent 9f6875a commit fadf5f2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ describe('getGenericHints', () => {
expect(hints).toEqual([
{
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',
},
]);
Expand Down
2 changes: 1 addition & 1 deletion packages/editor-ui/src/utils/nodeViewUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1223,7 +1223,7 @@ export function getGenericHints({
if (!executeOnce) {
nodeHints.push({
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',
});
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2149,7 +2149,7 @@ export class HttpRequestV3 implements INodeType {
[
{
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',
},
],
Expand Down

0 comments on commit fadf5f2

Please sign in to comment.