-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Open
Labels
Description
Prerequisites
- I have read the documentation
What theme are you using?
core
What is your question?
I have an anyOf array that is used to render a dropdown list. Now I want to change the order of the list elements with ui.schema (we cant change the actual json-schema files, they come from somewhere else). How can I do this?
Example:
{
"anyOf": [
{
"const": "OPTION1",
"title": "op1"
},
{
"const": "OPTION2",
"title": "op2"
},
{
"const": "OPTION3",
"title": "op3"
}
],
"type": "string"
}
How can I reorder them to eg [op3, op1, op2]?
Thanks!