Uncaught TypeError: Cannot read properties of undefined (reading 'localsInner') #3624
Replies: 6 comments 2 replies
-
I am facing the same issue as soon as I plug in the collaboration cursor (the collaboration works fine):
|
Beta Was this translation helpful? Give feedback.
-
@kobe651jp and @linuz90 can you share the versions of Prosemirror you have installed? I think this may be an issue with |
Beta Was this translation helpful? Give feedback.
-
overriding prosemirror-view to 1.30.1 worked for me |
Beta Was this translation helpful? Give feedback.
-
Also check in which folder you are having required dependencies, first I was having it in outer folder's package.json and after I installed them in inner folder where I am having my Collab configuration it worked. |
Beta Was this translation helpful? Give feedback.
-
Had this error when moving a mouse over a table in tiptap and it's now fixed, thanks! Before `npm ls prosemirror-view`└─┬ @tiptap/[email protected] ├─┬ [email protected] │ └── [email protected] ├─┬ [email protected] │ └── [email protected] ├─┬ [email protected] │ └── [email protected] ├─┬ [email protected] │ └── [email protected] ├─┬ [email protected] │ └── [email protected] ├─┬ [email protected] │ └── [email protected] deduped └── [email protected] added to package.json
After `npm ls prosemirror-view`└─┬ @tiptap/[email protected] ├─┬ [email protected] │ └── [email protected] deduped ├─┬ [email protected] │ └── [email protected] deduped ├─┬ [email protected] │ └── [email protected] deduped ├─┬ [email protected] │ └── [email protected] deduped ├─┬ [email protected] │ └── [email protected] deduped ├─┬ [email protected] │ └── [email protected] deduped └── [email protected] And the error is gone. |
Beta Was this translation helpful? Give feedback.
-
This error occurs when processing a Table/TableCell. Has anyone encountered this error before? A search yields no hits.
Beta Was this translation helpful? Give feedback.
All reactions