You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hey mate,
In Safari 9.3.1, assigning an object to an array by index is not working for me. My code:
constructor(){makeAutoObservable(this);this.list.forEach((i,idx)=>this.updateList(i,idx));}updateList=(item,idx)=>{constnewItem=newItem(this,item);// another storethis.list[idx]=newItem;returnnewItem;}
After updateList, this.list[0] is undefined, but the others are good.
The mobx version is 6.6.1.
I find the similar issue #364 (comment), and it was fixed in the previous version. Perhaps it has been missed in mobx6.
The text was updated successfully, but these errors were encountered:
Hey mate,
In Safari 9.3.1, assigning an object to an array by index is not working for me. My code:
After updateList, this.list[0] is undefined, but the others are good.
The mobx version is 6.6.1.
I find the similar issue #364 (comment), and it was fixed in the previous version. Perhaps it has been missed in mobx6.
The text was updated successfully, but these errors were encountered: