mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 10:31:15 +00:00
⚡ Add infobox to Split In Batches node (#2217)
This commit is contained in:
@@ -313,6 +313,7 @@ export default mixins(
|
|||||||
margin: 0.3em 0;
|
margin: 0.3em 0;
|
||||||
padding: 0.8em;
|
padding: 0.8em;
|
||||||
line-height: 1.5;
|
line-height: 1.5;
|
||||||
|
word-break: normal;
|
||||||
|
|
||||||
a {
|
a {
|
||||||
font-weight: var(--font-weight-bold);
|
font-weight: var(--font-weight-bold);
|
||||||
|
|||||||
@@ -22,6 +22,12 @@ export class SplitInBatches implements INodeType {
|
|||||||
inputs: ['main'],
|
inputs: ['main'],
|
||||||
outputs: ['main'],
|
outputs: ['main'],
|
||||||
properties: [
|
properties: [
|
||||||
|
{
|
||||||
|
displayName: 'You may not need this node — n8n nodes automatically run once for each input item. <a href="https://docs.n8n.io/getting-started/key-concepts/looping.html#using-loops-in-n8n" target="_blank">More info</a>',
|
||||||
|
name: 'splitInBatchesNotice',
|
||||||
|
type: 'notice',
|
||||||
|
default: '',
|
||||||
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Batch Size',
|
displayName: 'Batch Size',
|
||||||
name: 'batchSize',
|
name: 'batchSize',
|
||||||
@@ -32,7 +38,6 @@ export class SplitInBatches implements INodeType {
|
|||||||
default: 10,
|
default: 10,
|
||||||
description: 'The number of items to return with each call.',
|
description: 'The number of items to return with each call.',
|
||||||
},
|
},
|
||||||
|
|
||||||
{
|
{
|
||||||
displayName: 'Options',
|
displayName: 'Options',
|
||||||
name: 'options',
|
name: 'options',
|
||||||
|
|||||||
Reference in New Issue
Block a user