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
Not related to reported issue but if you pass as [data] any string, after changing editor's content, you will freeze the app. I guess, we should remove this part of the code:
We shouldn't care about updating editor's content if the state has changed. A user can do it manually just by calling the callback as the second parameter in setState function.
Fix: The `<CKEditor>` component will not be updated by the `React` itself. The editor won't freeze if `#data` property was specified as a static string. Closes#75. Closes#78.
Not related to reported issue but if you pass as
[data]
any string, after changing editor's content, you will freeze the app. I guess, we should remove this part of the code:ckeditor5-react/src/ckeditor.jsx
Lines 25 to 27 in a31de76
We shouldn't care about updating editor's content if the state has changed. A user can do it manually just by calling the callback as the second parameter in
setState
function.Originally posted by @pomek in #75 (comment)
The text was updated successfully, but these errors were encountered: