Skip to content

Commit

Permalink
Fixing variable reference
Browse files Browse the repository at this point in the history
  • Loading branch information
DaanV2 committed Oct 29, 2023
1 parent 12613b5 commit 7dd66d0
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions source/resource/ui/elements/properties/variables.json
Original file line number Diff line number Diff line change
@@ -1,26 +1,26 @@
{
"title": "Variables",
"description": "The variables that are contained within this element.",
"definitions": {
"variables": {
"title": "Variable Definition",
"description": "A variable is a reference to a value that can be used in the UI."
}
},
"anyOf": [
{
"$ref": "../../general/item_ref.json"
},
{ "$ref": "../../general/item_ref.json" },
{
"type": "array",
"items": {
"type": "object",
"title": "Variables",
"additionalProperties": {
"$ref": "#/definitions/variables"
}
"additionalProperties": { "$ref": "#/definitions/variables" }
}
},
{
"type": "object",
"title": "Variables",
"additionalProperties": {
"$ref": "#/definitions/variables"
}
"additionalProperties": { "$ref": "#/definitions/variables" }
}
]
}

0 comments on commit 7dd66d0

Please sign in to comment.