mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-20 11:22:15 +00:00
fix(Airtable Node): Make multipleRecordLinks editable in fields (#9608)
This commit is contained in:
@@ -31,7 +31,6 @@ const airtableReadOnlyFields = [
|
|||||||
'rollup',
|
'rollup',
|
||||||
'externalSyncSource',
|
'externalSyncSource',
|
||||||
'multipleLookupValues',
|
'multipleLookupValues',
|
||||||
'multipleRecordLinks',
|
|
||||||
];
|
];
|
||||||
|
|
||||||
const airtableTypesMap: TypesMap = {
|
const airtableTypesMap: TypesMap = {
|
||||||
@@ -42,7 +41,7 @@ const airtableTypesMap: TypesMap = {
|
|||||||
time: [],
|
time: [],
|
||||||
object: [],
|
object: [],
|
||||||
options: ['singleSelect'],
|
options: ['singleSelect'],
|
||||||
array: ['multipleSelects', 'multipleAttachments'],
|
array: ['multipleSelects', 'multipleRecordLinks', 'multipleAttachments'],
|
||||||
};
|
};
|
||||||
|
|
||||||
function mapForeignType(foreignType: string, typesMap: TypesMap): FieldType {
|
function mapForeignType(foreignType: string, typesMap: TypesMap): FieldType {
|
||||||
|
|||||||
Reference in New Issue
Block a user