Skip to content
Snippets Groups Projects

fix: inserting variables in reports

Merged Dennis Collaris requested to merge fix/report-stats into main
2 files
+ 12
11
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -36,7 +36,7 @@ export const InsertVariablesPlugin = () => {
}
return Object.entries(typeObj.attributes)
.map(([k, v]) => Object.keys(v).map((x) => `${k} ${x}`))
.map(([k, v]) => Object.keys(v.statistics).map((x) => `${k} ${x}`))
.flat();
}
Loading