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.
Seems like an SVG manipulation issue with
bubble-label, I had to addto the end of
update(el, props)inReactBubbleChartD3.jsto fix it.