[ADF-4341] Customise the property title into the InfoDrawer from configuration (#5556)

* [ADF-4341] Customise the property title into the InfoDrawer from configuration

* * docs added

* * removed unnecessary logic and docs updated
This commit is contained in:
dhrn
2020-03-25 16:35:11 +05:30
committed by GitHub
parent 772188c13d
commit c684d5f50c
7 changed files with 126 additions and 8 deletions

View File

@@ -461,7 +461,31 @@
},
"properties": {
"description": "list of type properties",
"type": "array"
"type": "array",
"items": {
"oneOf": [
{
"type": "string"
},
{
"type": "object",
"required": [
"title",
"name"
],
"properties": {
"title": {
"description": "Title of aspect properties",
"type": "string"
},
"name": {
"description": "Name of aspect properties",
"type": "string"
}
}
}
]
}
}
}
}