Skip to content

Commit

Permalink
fix(Airtable Node): Make multipleRecordLinks editable in fields (n8n-…
Browse files Browse the repository at this point in the history
  • Loading branch information
joshsorenson authored Jun 20, 2024
1 parent 2021241 commit fdde995
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ const airtableReadOnlyFields = [
'rollup',
'externalSyncSource',
'multipleLookupValues',
'multipleRecordLinks',
];

const airtableTypesMap: TypesMap = {
Expand All @@ -42,7 +41,7 @@ const airtableTypesMap: TypesMap = {
time: [],
object: [],
options: ['singleSelect'],
array: ['multipleSelects', 'multipleAttachments'],
array: ['multipleSelects', 'multipleRecordLinks', 'multipleAttachments'],
};

function mapForeignType(foreignType: string, typesMap: TypesMap): FieldType {
Expand Down

0 comments on commit fdde995

Please sign in to comment.