JSON Schema Form - Multiple-choice list autocomplete bug

Hi all, I hope you are doing fine.
Given this JSON Schema:

{
  "type": "object",
  "properties": {
    "todo_list": {
      "type": "array",
      "title": "My ToDo list",
      "items": {
        "type": "string",
        "enum": [
          "1",
          "2",
          "3"
        ],
        "enumNames": [
          "Option One",
          "Option Two",
          "Option Three"
        ]
      },
      "uniqueItems": "true"
    }
  }
}

It will create a Dropdown field with a multiple-choice feature like this:

The problem here is when you type for example two it won't find anything

On the other hand, if you find by value instead of label, for example, 2 it works fine but this is not right

By testing this with the official repo GitHub - rjsf-team/react-jsonschema-form: A React component for building Web forms from JSON Schema. it works as expected.

Could there be a problem with Retool's theme for the JSON Schema Form?
Is there a way of changing the theme for it in Retool?

1 Like

did anyone face this issue? know how to solve it?

tumbleweed-acegif-391

1 Like

Created a bug ticket for this!

1 Like

Any updates on this? We are running into it and poses a major bottleneck :frowning:

@JJKne No updates right now, but I've bumped the internal ticket with your +1. We'll update this topic as there is any new information to share.

fyi we moved to direct retool components (as one should) so this issue is no longer relevant (but will be for many others I can only assume!)