From: Ben McCann <322311+benmccann@users.noreply.github.com> Date: Tue, 19 May 2020 14:28:16 +0000 (-0700) Subject: Use correct index when resolving bubble options (#7375) X-Git-Tag: v3.0.0-beta.2~147 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=53f503825219e4a8ff78be16b858a0e969f9b435;p=thirdparty%2FChart.js.git Use correct index when resolving bubble options (#7375) --- diff --git a/src/controllers/controller.bubble.js b/src/controllers/controller.bubble.js index 6b5dae184..fdbe5b90f 100644 --- a/src/controllers/controller.bubble.js +++ b/src/controllers/controller.bubble.js @@ -110,7 +110,7 @@ export default class BubbleController extends DatasetController { }; if (includeOptions) { - properties.options = me.resolveDataElementOptions(i, mode); + properties.options = me.resolveDataElementOptions(index, mode); if (reset) { properties.options.radius = 0;