fix(Airtable Node): Attachments field type fix (#7227)

Github issue / Community forum post (link here to close automatically):

https://community.n8n.io/t/possible-airtable-bug-when-creating-attachment-record/29288
This commit is contained in:
Michael Kret 2023-09-21 15:00:41 +03:00 committed by GitHub
parent 303bc8e71e
commit 2af967cf88
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -40,9 +40,9 @@ const airtableTypesMap: TypesMap = {
boolean: ['checkbox'],
dateTime: ['dateTime', 'date'],
time: [],
object: ['multipleAttachments'],
object: [],
options: ['singleSelect'],
array: ['multipleSelects'],
array: ['multipleSelects', 'multipleAttachments'],
};
function mapForeignType(foreignType: string, typesMap: TypesMap): FieldType {