mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 01:56:46 +00:00
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:
@@ -40,9 +40,9 @@ const airtableTypesMap: TypesMap = {
|
|||||||
boolean: ['checkbox'],
|
boolean: ['checkbox'],
|
||||||
dateTime: ['dateTime', 'date'],
|
dateTime: ['dateTime', 'date'],
|
||||||
time: [],
|
time: [],
|
||||||
object: ['multipleAttachments'],
|
object: [],
|
||||||
options: ['singleSelect'],
|
options: ['singleSelect'],
|
||||||
array: ['multipleSelects'],
|
array: ['multipleSelects', 'multipleAttachments'],
|
||||||
};
|
};
|
||||||
|
|
||||||
function mapForeignType(foreignType: string, typesMap: TypesMap): FieldType {
|
function mapForeignType(foreignType: string, typesMap: TypesMap): FieldType {
|
||||||
|
|||||||
Reference in New Issue
Block a user