If I have a dynamic table and I have a copy pasted parameter which starts with “0x…” it just gets deleted or it remains there but the sync button remains disabled. Is this a bug? you can reproduce it with the following code.
Copy paste the 0x71C765 into the requested parameter, when pressing enter it will disappear. If i write it down then it works, but that might not be ideal.
Any help is appreciated
pack.addSyncTable({
name: "TestTables",
schema: coda.makeObjectSchema({
properties: {
},
displayProperty: "something",
idProperty: "something"
}),
identityName: "TestTable",
formula: {
name: "SyncTable",
description: "Sync table",
parameters: [coda.makeParameter({
type: coda.ParameterType.String,
name: "testParameter",
description: "Input the following by copy pasting: 0x71C765"
})],
execute: async function ([testparam], context) {
return {
result: []
}
}
}
})