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
I've found that in a 3rd party component I'm using, in an application where I'm also using react-a11y-alt, this is coming up as undefined in the componentDidUpdate() function. Using the component in other places does not have this issue.
It looks as if the react-a11y-alt after.js render() function patches componentDidUpdate as well as componentDidMount and when it does so it replaces the context with undefined:
original.apply(undefined,args);
It looks as if the component's context is available there and could be passed in as the thisArg instead of undefined, so I'm not sure why that isn't being done.
The text was updated successfully, but these errors were encountered:
I've found that in a 3rd party component I'm using, in an application where I'm also using react-a11y-alt,
this
is coming up as undefined in the componentDidUpdate() function. Using the component in other places does not have this issue.It looks as if the react-a11y-alt after.js render() function patches componentDidUpdate as well as componentDidMount and when it does so it replaces the context with undefined:
It looks as if the component's context is available there and could be passed in as the
thisArg
instead of undefined, so I'm not sure why that isn't being done.The text was updated successfully, but these errors were encountered: