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
When i toggle EditMode On the first time, it loads correctly, When i set EditMode false, i've also tried to call the Editors dispose method manually, and EditMode back to true, it fails.
My quick solution was the following in tinymce-blazor.js
Specific code that throws the error:
const updateTinyVal = (id, val) => { if (getTiny() && getTiny().get(id).getContent() !== val) { getTiny().get(id).setContent(val); } };
Happens when i try to build it dynamically e.g.
This works:
This doesnt:
Not sure why.
The text was updated successfully, but these errors were encountered: