Dear Coda Community,
I ran into a strange problem when using a dynamic synch table. When the oauth token expires and is refreshed, the table “invents” featured properties. It’s kind of hard to explain, that’s why I created this video: column featuring bug - YouTube
I do not feature any columns, ever:
getSchema: async function (context, _, { sheetName, startColumn, endColumn, startRow }) {
let properties: coda.ObjectSchemaProperties = {};
let idProperty = 'rowNumber';
properties[idProperty] = {
type: coda.ValueType.Number,
}
let displayProperty = 'rowName';
properties[displayProperty] = {
type: coda.ValueType.String,
}
//more code here to fetch additional properties dynamically
return coda.makeObjectSchema({
properties: properties,
displayProperty: displayProperty,
idProperty: idProperty,
featuredProperties: [],
});
},
I don’t know what I’m doing wrong here… Can you help me please?
Thanks and best regards
Benno