mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-11 12:57:29 -08:00
fix(Airtable Node): Make multipleRecordLinks editable in fields (#9608)
This commit is contained in:
parent
202124152c
commit
fdde9957c8
|
@ -31,7 +31,6 @@ const airtableReadOnlyFields = [
|
|||
'rollup',
|
||||
'externalSyncSource',
|
||||
'multipleLookupValues',
|
||||
'multipleRecordLinks',
|
||||
];
|
||||
|
||||
const airtableTypesMap: TypesMap = {
|
||||
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue