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
Coming from #84 , wanted to track support for having something like this
render(){return(<h1>You have {this.todos.length} TODOs left to complete</h1>)}
Details
I think I was getting this error though when I tried
ReferenceError: __this__ is not defined
I think this would also handle other cases like this, but will need to double check
render(){const{ user }=this;return(<buttononclick={(e)=>{this.deleteUser(user.id)}}>Delete User</button>)}
Also would be good handle derivative this references as well, but also make sure we don't track them for observability either. Just make sure we are looking for this in all possible places, e.g.
Type of Change
Summary
Coming from #84 , wanted to track support for having something like this
Details
I think I was getting this error though when I tried
I think this would also handle other cases like this, but will need to double check
Also would be good handle derivative
this
references as well, but also make sure we don't track them for observability either. Just make sure we are looking forthis
in all possible places, e.g.The text was updated successfully, but these errors were encountered: