Kai Schlamp
Kai Schlamp
It seems there is even no `selection-change` event fired (see https://github.com/quilljs/quill/issues/2186). From the source code, it seems that `onBlur` depends on that event.
Years have passed ... and it is still challenging to get the type hints of mixins correctly (if possible at all). Are there any new approaches to type mixins? The...
Here is some workaround I found to overwrite the height of `cm-scroller` set by react-codemirror: ```jsx const theme = EditorView.theme({ "& div.cm-scroller": { minHeight: `${minHeight} !important`, }, }) return (...
Same thing for some other tags, like `strong`. Any help?
Jim, I tried your solution, but unfortunately when starting autotest with `autotest -c -f` and pressing `CTRL-C` doesn't run all tests anymore (like it normally does).
With v0.49.0 it seemed to be ok., but I can't say for sure as I just switched from controlled to uncontrolled mode.
I guess the `defaultValue` is somehow overwritten by value (even if not set), because in `editorDidMount` the value is still correctly set with `defaultValue`, but after some milliseconds it is...
Yes, I think so. From having a quick look at the code I think [this `useEffect`](https://github.com/react-monaco-editor/react-monaco-editor/blob/2d2fe2ed2c19021841c558bcbea68113836198a4/src/editor.tsx#L85) is wrong as the value is always set even when `value` was not provided....
@IKrehan solution is not really correct as `resetServerContext` [should run on the server](https://github.com/atlassian/react-beautiful-dnd/blob/2360665305b854434e968e41c7b4105009b73c40/csp-server/server.js). But I guess it works on the client if you only use one `DragDropContext`. The problem is...
After some investigation and looking at the code it seems the root of the problem is more the client-side than the server-side. `resetServerContext` resets the context id correctly each time...