1
0
Fork 0
mirror of synced 2024-08-19 03:51:29 +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, type: QueryTypes.FIELDS,
customisable: true, customisable: true,
fields: { fields: {
recordID: { id: {
display: "Record ID",
type: DatasourceFieldTypes.STRING, type: DatasourceFieldTypes.STRING,
required: true, required: true,
}, },
@ -116,13 +117,13 @@ module AirtableModule {
} }
} }
async update(query: { table: any; recordID: any; json: any }) { async update(query: { table: any; id: any; json: any }) {
const { table, recordID, json } = query const { table, id, json } = query
try { try {
return await this.client(table).update([ return await this.client(table).update([
{ {
id: recordID, id,
fields: json, fields: json,
}, },
]) ])