Skip to content

Commit

Permalink
fix(legacy-plugin-chart-treemap): incorrect template literal (apache#693
Browse files Browse the repository at this point in the history
)
  • Loading branch information
villebro authored and zhaoyongjie committed Nov 26, 2021
1 parent 3607532 commit 4eff7f6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ function Treemap(element, props) {
d.data.name
.slice(Math.max(0, d.data.name.lastIndexOf('.') + 1))
.split(/(?=[A-Z][^A-Z])/g)
.concat(`\u00A0{formatNumber(d.value)}`),
.concat(`\u00A0${formatNumber(d.value)}`),
)
.enter()
.append('tspan')
Expand Down

0 comments on commit 4eff7f6

Please sign in to comment.