-
-
Notifications
You must be signed in to change notification settings - Fork 38
Open
Labels
bugSomething isn't workingSomething isn't working
Description
Hi, I am wondering if I am doing something wrong. I have this valid JSON Schema:
{
"2": {
"type": "object",
"properties": {
"corpus": {
"type": "string",
"default": "Corpus Test",
"readonly": true
},
"Tipos textuales": {
"type": "object",
"systype": {
"const": "object",
"widget": "hidden"
},
"title": "Tipos textuales",
"keys": {
"items": {
"title": "Ítems",
"type": "list",
"items": {
"anyOf": [
{
"type": "string",
"systype": {
"const": "string_choices",
"widget": "hidden"
},
"title": "Lengua escrita",
"default": "",
"required": null,
"choices": [
"A",
"B"
]
},
{
"type": "string",
"systype": {
"const": "string_choices",
"widget": "hidden"
},
"title": "Lengua tecleada",
"default": "",
"required": null,
"choices": [
"C",
"D"
]
}
]
}
}
}
}
}
}
}
But when I try to select an item, I get this behavior:
I check the documentation and I couldn't find where I am missing something. Thanks in advance!
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working
