Skip to content

Commit

Permalink
Fix check parent condition
Browse files Browse the repository at this point in the history
  • Loading branch information
arminmeh committed Nov 1, 2024
1 parent b78dbdc commit cc512ee
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ export const useGridDataSource = (
return;
}

if (parentId) {
if (parentId && parentId !== GRID_ROOT_GROUP_ID) {
nestedDataManager.queue([parentId]);
return;
}
Expand Down

0 comments on commit cc512ee

Please sign in to comment.