Skip to content

Commit

Permalink
fix(Airtable Node): Attachments field type fix (#7227)
Browse files Browse the repository at this point in the history
Github issue / Community forum post (link here to close automatically):

https://community.n8n.io/t/possible-airtable-bug-when-creating-attachment-record/29288
  • Loading branch information
michael-radency authored Sep 21, 2023
1 parent 303bc8e commit 2af967c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 2af967c

Please sign in to comment.