Skip to content

Commit

Permalink
#38: remove unnecessary console log
Browse files Browse the repository at this point in the history
  • Loading branch information
m4nv3ru committed Apr 15, 2022
1 parent 94f8845 commit 517841c
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,6 @@ export default class BubbleChart extends React.Component {
const root = hierarchy({ children: this.state.content }).sum(d => d.activity);
layout(root);

console.log(root.leaves());
const leaf = bubbleArea.selectAll('g').data(root.leaves()).join('g').attr('transform', d => `translate(${d.x},${d.y})`);
leaf.append('circle').attr('fill', d => this.state.colors.get(d.data.id)).attr('data', d => d.data.id).attr('r', d => d.r);
leaf.on('mouseenter', d => this.constructActiveLegend(d.target));
Expand Down

0 comments on commit 517841c

Please sign in to comment.