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
Sometimes an error occurs in Edge 18.17763 browsers
TypeError: Unable to get property 'target' of undefined or null reference
in
./node_modules/react-tooltip/dist/decorators/staticMethods.js in e.prototype.globalShow at line 43:1
here
target.prototype.globalShow = function (event) {
if (this.mount) {
// Create a fake event, specific show will limit the type to `solid`
// only `float` type cares e.clientX e.clientY
var e = { currentTarget: event.detail.target }; // <––– error occurs here
this.showTooltip(e, true);
}
};