Having an issue trying to assign a variable to an object. It seems that I am unable to set a variable for this particular object, even though it still displays.
Theme.opts.series = series_data.series;
console.log(Theme.opts);
console.log(Theme.opts.series);
In the example above, the first console log returns an object but series appears to be null. The second console log properly displays the contents of series_data.series.
Why does it seem null when the other console log indicates that it is present?
If more information is needed, please let me know. Series contains arrays with over 1000 entries.
I am able to assign values to any property except series. For example, Theme.opts.foo = series_data.series works as intended.