Details
Description
Reproduction steps:
- Create a new Live Data
- Add a new field called test
- Add 'description': 'this is a test' to the Live Data propertyDescriptors of the test field
- Save
Expected Result:
The 'test' field should display 'this is a test' when hovered over.
Actual Result:
The field description does not appear when hovering over.
Here is an example of livedata with a description added for one of the properties:
{{liveData
id="movies"
properties="title,genre"
}}{
"data": {
"count": 2,
"entries": [
{
"title": "Meet John Doe",
"genre": ["Comedy", "Romance"]
},
{
"title": "Modern Times",
"genre": ["Comedy", "Drama"]
}
]
},
"meta": {
"propertyDescriptors": [
{
"id": "title",
"description":"this is a test",
"name": "Title",
"visible": true,
"displayer": {"id": "link", "propertyHref": "url"}
},
{
"id": "genre",
"name": "Genre",
"visible": true
}
]
}
}{{/liveData}}