react-bubble-chart
react-bubble-chart copied to clipboard
Bubble text not updated despite change in displayText in data prop
Seems like an SVG manipulation issue with bubble-label, I had to add
props.data.forEach(({ displayText }, index) => {
((labels[0] || [])[index] || {}).textContent = displayText;
});
to the end of update(el, props) in ReactBubbleChartD3.js to fix it.