Add infobox to Split In Batches node (#2217)

This commit is contained in:
Iván Ovejero 2021-09-19 16:13:48 +02:00 committed by GitHub
parent 72fd9e23cd
commit 8d42eddfc2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 1 deletions

View file

@ -313,6 +313,7 @@ export default mixins(
margin: 0.3em 0;
padding: 0.8em;
line-height: 1.5;
word-break: normal;
a {
font-weight: var(--font-weight-bold);

View file

@ -22,6 +22,12 @@ export class SplitInBatches implements INodeType {
inputs: ['main'],
outputs: ['main'],
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',
name: 'batchSize',
@ -32,7 +38,6 @@ export class SplitInBatches implements INodeType {
default: 10,
description: 'The number of items to return with each call.',
},
{
displayName: 'Options',
name: 'options',