When displaying elements of array, display the first value of the element instead of/along with the index of the element
Example:
{"_id": ObjectId("548c42ba4a87f9be3a48f3a4"),
"name": "Category A",
"subcategories": [{
name: "Subcategory A"
},{
name: "Subcategory B"
}]
}
Right Now, we see in the tree view, we see
Category A
+subcategories
When we expand subcategories we see
subcategories
+0
+1
And we have to expand 0 and 1 to see any meaningfull value.
I'd like to see:
subcategories
+Subcategory A
+Subcategory B
3
votes
GC
shared this idea