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
After I activate the Vue Devtools by opening the Vue tab once, I sometimes get JS crashes because Devtools code tries to dereference a null object.
Here's what I so far, hopefully you'll be able to take an educated guess on what the condition that triggers the bug is.
From my experience so far, it could be linked to @intlify/unplugin-vue-i18n but I am not 100% sure. Maybe just a coincidence.
The problem occurs in a hook for timelineEventAdded. Here's the call stack (obfuscated though).
Here's the crashing code, with a little bit of context so hopefully you can locate the un-minified source:
The problem is that e is a plain object. You can see its fields in the screenshot above, but it has no constructor. So e.constructor.name fails with Cannot read properties of undefined (reading: 'name').
The text was updated successfully, but these errors were encountered:
I'm sorry, this is a very large project and I can't easily extract a minimal repro.
I was hopeful that maybe you could make a guess based on call stack and error details, but I know it may not be enough.
If there's nothing actionable in this issue, just close it.
After I activate the Vue Devtools by opening the Vue tab once, I sometimes get JS crashes because Devtools code tries to dereference a null object.
Here's what I so far, hopefully you'll be able to take an educated guess on what the condition that triggers the bug is.
From my experience so far, it could be linked to
@intlify/unplugin-vue-i18n
but I am not 100% sure. Maybe just a coincidence.The problem occurs in a hook for
timelineEventAdded
. Here's the call stack (obfuscated though).Here's the crashing code, with a little bit of context so hopefully you can locate the un-minified source:
The problem is that
e
is a plain object. You can see its fields in the screenshot above, but it has noconstructor
. Soe.constructor.name
fails with Cannot read properties of undefined (reading: 'name').The text was updated successfully, but these errors were encountered: