Skip to content

Commit

Permalink
Linting
Browse files Browse the repository at this point in the history
  • Loading branch information
RichRadics committed Aug 3, 2017
1 parent 81184ce commit 767bfa0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion superset/assets/visualizations/treemap.js
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ function treemap(slice, payload) {
const name = function (d) {
return d.parent
? name(d.parent) + ' / ' + d.name + ' (' + formatNumber(d.value) + ')'
: (slice.datasource.verbose_map[d.name] || d.name) + ' (' + formatNumber(d.value) + ')';
: (slice.datasource.verbose_map[d.name] || d.name) + ' (' + formatNumber(d.value) + ')';
};

initialize(data);
Expand Down

0 comments on commit 767bfa0

Please sign in to comment.