You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Time Graph tree entries are sorted by id in the UI and the order returned by the time data provider is not kept. Since the ids, are arbitrary, it should not be used for sorting.
In my custom trace I have a data provider that returns the following order:
parentA (parentId: -1, id: 3)
childA (parentId:3, id 10)
childB (parentId:3, id 5)
parentB (parentId: -1, id: 2)
childC (parentId:2, id 20)
childD (parentId:2, id 15)
In the view it looks like:
parentB (parentId: -1, id: 2)
childD (parentId:2, id 15)
childC (parentId:2, id 20)
parentA (parentId: -1, id: 3)
childB (parentId:3, id 5)
childA (parentId:3, id 10)
The text was updated successfully, but these errors were encountered:
Time Graph tree entries are sorted by id in the UI and the order returned by the time data provider is not kept. Since the ids, are arbitrary, it should not be used for sorting.
In my custom trace I have a data provider that returns the following order:
parentA (parentId: -1, id: 3)
childA (parentId:3, id 10)
childB (parentId:3, id 5)
parentB (parentId: -1, id: 2)
childC (parentId:2, id 20)
childD (parentId:2, id 15)
In the view it looks like:
parentB (parentId: -1, id: 2)
childD (parentId:2, id 15)
childC (parentId:2, id 20)
parentA (parentId: -1, id: 3)
childB (parentId:3, id 5)
childA (parentId:3, id 10)
The text was updated successfully, but these errors were encountered: