From: Jukka Kurkela Date: Fri, 11 Sep 2020 14:46:25 +0000 (+0300) Subject: Fix hover-out regression (#7785) X-Git-Tag: v3.0.0-beta.2~1^2~16 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=9427398b3c1b4aa09a3d72c8523d8b6d77a0d9d2;p=thirdparty%2FChart.js.git Fix hover-out regression (#7785) --- diff --git a/src/core/core.animations.js b/src/core/core.animations.js index 36549aa9a..1a4e9b0ca 100644 --- a/src/core/core.animations.js +++ b/src/core/core.animations.js @@ -129,7 +129,7 @@ export default class Animations { // Going from distinct options to shared options: // After all animations are done, assing the shared options object to the element // So any new updates to the shared options are observed - awaitAll(target.$animations, newOptions).then(() => { + awaitAll(target.options.$animations, newOptions).then(() => { target.options = newOptions; }); }