Skip to content

Commit

Permalink
fix(web): add id to property group list
Browse files Browse the repository at this point in the history
  • Loading branch information
rot1024 committed Jul 2, 2023
1 parent f9ac734 commit 466face
Showing 1 changed file with 4 additions and 3 deletions.
Expand Up @@ -177,9 +177,10 @@ export const processProperty = (
const used = orig || parent;
return [
key,
used?.groups.map(g =>
processPropertyGroups(schema, g, undefined, linkedDatasetId, datasets),
),
used?.groups.map(g => ({
...processPropertyGroups(schema, g, undefined, linkedDatasetId, datasets),
id: g.id,
})),
];
}

Expand Down

0 comments on commit 466face

Please sign in to comment.