1
0
Fork 0
mirror of synced 2024-07-07 15:25:52 +12:00

Use display field

This commit is contained in:
Mel O'Hagan 2022-08-10 13:54:56 +01:00
parent 55f53de412
commit 785cdea396

View file

@ -63,7 +63,8 @@ module AirtableModule {
type: QueryTypes.FIELDS,
customisable: true,
fields: {
recordID: {
id: {
display: "Record ID",
type: DatasourceFieldTypes.STRING,
required: true,
},
@ -116,13 +117,13 @@ module AirtableModule {
}
}
async update(query: { table: any; recordID: any; json: any }) {
const { table, recordID, json } = query
async update(query: { table: any; id: any; json: any }) {
const { table, id, json } = query
try {
return await this.client(table).update([
{
id: recordID,
id,
fields: json,
},
])