-
Notifications
You must be signed in to change notification settings - Fork 78
New issue
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
Can't set value by value prop #200
Comments
having the same problem. I am unable to update the value once the props are updated |
adding render(data) {
return __awaiter(this, void 0, void 0, function* () {
yield this._editorJS.isReady;
yield this._editorJS.render(data);
});
} |
Was able to update the value with your fix: const updateValue = (data) => {
editorCore.current._editorJS.isReady.then(() => {
editorCore.current._editorJS.render(data);
});
} |
@Jungwoo-An Hi! Do you have time to check this? We need this to make things work :( |
Any updates on the fix please ? do you have a release date for it ? thanks |
+1 |
Anyone fixed this? |
Environment
Describe
When setting value editor throws an error =>
this._editorJS.render is not a function at ClientEditorCore.<anonymous>
I also tried added via data prop but the value is not passing by that either.
The text was updated successfully, but these errors were encountered: