mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-20 03:12:15 +00:00
⚡ Typo in baserow create operation to match description (#2078)
This commit is contained in:
@@ -222,12 +222,11 @@ export class Baserow implements INodeType {
|
|||||||
|
|
||||||
const body: IDataObject = {};
|
const body: IDataObject = {};
|
||||||
|
|
||||||
const dataToSend = this.getNodeParameter('dataToSend', 0) as 'defineBelow' | 'autoMapColumns';
|
const dataToSend = this.getNodeParameter('dataToSend', 0) as 'defineBelow' | 'autoMapInputData';
|
||||||
|
|
||||||
if (dataToSend === 'autoMapColumns') {
|
|
||||||
|
|
||||||
|
if (dataToSend === 'autoMapInputData') {
|
||||||
const incomingKeys = Object.keys(items[i].json);
|
const incomingKeys = Object.keys(items[i].json);
|
||||||
const rawInputsToIgnore = this.getNodeParameter('inputDataToIgnore', i) as string;
|
const rawInputsToIgnore = this.getNodeParameter('inputsToIgnore', i) as string;
|
||||||
const inputDataToIgnore = rawInputsToIgnore.split(',').map(c => c.trim());
|
const inputDataToIgnore = rawInputsToIgnore.split(',').map(c => c.trim());
|
||||||
|
|
||||||
for (const key of incomingKeys) {
|
for (const key of incomingKeys) {
|
||||||
|
|||||||
Reference in New Issue
Block a user