From 53f503825219e4a8ff78be16b858a0e969f9b435 Mon Sep 17 00:00:00 2001 From: Ben McCann <322311+benmccann@users.noreply.github.com> Date: Tue, 19 May 2020 07:28:16 -0700 Subject: [PATCH] Use correct index when resolving bubble options (#7375) --- src/controllers/controller.bubble.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.47.2