mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-11 04:47:29 -08:00
⚡ Add infobox to Split In Batches node (#2217)
This commit is contained in:
parent
72fd9e23cd
commit
8d42eddfc2
|
@ -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',
|
||||||
|
|
Loading…
Reference in a new issue