Table input disappears when clicking enter and sync button never enables

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: []
      }    
    }
  }
})

Hey @Edgar_Hernandez1, thanks for reporting this! We’ve gone ahead and filed this as a bug. Our team will investigate further and we will update you once it has been resolved. Since turnaround time varies depending on severity, I don’t have a clear timeline on when it will be completed. I apologize for any inconvenience in the meantime.