Skip to content
Snippets Groups Projects
Commit 8758d184 authored by stevereis's avatar stevereis
Browse files

fix missing variables in group

parent a504a70a
No related branches found
No related tags found
No related merge requests found
......@@ -10,7 +10,7 @@ export const dataToGroup = (data: Hierarchy): Group => {
id: data.code,
label: data.label,
groups: data.groups ? data.groups.map(dataToGroup) : [],
variables: [],
variables: data.variables ? data.variables.map(dataToVariable) : [],
};
};
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment