Skip to content

Commit

Permalink
fix(legacy-chart): corrupted raw chart data
Browse files Browse the repository at this point in the history
  • Loading branch information
justinpark committed Jul 31, 2023
1 parent e2d5046 commit 4d20cb6
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,7 @@ export default function transformProps(chartProps) {
const data = Array.isArray(rawData)
? rawData.map(row => ({
...row,
values: row.values.map(value => ({ ...value })),
key: formatLabel(row.key, datasource.verboseMap),
}))
: rawData;
Expand Down

0 comments on commit 4d20cb6

Please sign in to comment.