Closed
Description
#394 breaks the details panel once the rows are grouped by a column. I managed to track the problem down to the following line.
core/src/utils/data-manager.js
Line 571 in 47b7080
Describe the bug
The bug occurs because the findDataByPath
function returns undefined
.
If you try to open the details panel while no grouping is active, the path array contains only one integer value, and the details panel opens normally.
If you group the rows by some column, the path array now contains two values, the first one being the group index, and the second one being the unique row id (uuid). The uuid is a string, and result.data["uuid"]
returns undefined.
To Reproduce
CodeSandbox