We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Follow-up of the #37 and #37 (comment)
ckeditor5-react/src/ckeditor.jsx
Lines 18 to 22 in 383b25d
As @pomek proposed, we should check if the this.props.data is equal to undefined to prevent an infinite update loop.
this.props.data
undefined
The text was updated successfully, but these errors were encountered:
Not sure if this should be marked as a bug or as an enhancement 😄
Sorry, something went wrong.
Mhm, I proposed aborting the update editor's data if this.props.data does not exist:
// Aborts updating the editor's data if "data" property wasn't specified. if ( !( 'data' in this.props ) ) { return; }
And of course, it's a bug that occurs in very specified environments.
Merge pull request #55 from ckeditor/t/39
e16430a
Fix: Prevented an infinite loop when the `data` property is missing. Closes #39.
pomek
No branches or pull requests
Follow-up of the #37 and #37 (comment)
ckeditor5-react/src/ckeditor.jsx
Lines 18 to 22 in 383b25d
As @pomek proposed, we should check if the
this.props.data
is equal toundefined
to prevent an infinite update loop.The text was updated successfully, but these errors were encountered: