Skip to content
This repository has been archived by the owner on Nov 3, 2023. It is now read-only.

Commit

Permalink
fix(legacy-chart): corrupted raw chart data (apache#24850)
Browse files Browse the repository at this point in the history
(cherry picked from commit 1c5971d)
  • Loading branch information
justinpark authored and john-bodley committed Aug 3, 2023
1 parent fe58f21 commit 574344b
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,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 574344b

Please sign in to comment.