Home Forums Chart Support React – error on unmount Reply To: React – error on unmount

#24041

Hi all, I have found the solution to this problem! There’s a tiny error on line 140 of canvas.min.js

You need to change this


for(i=0;i<a.length;i++)

to this


for(var i=0;i<a.length;i++)