ckeditor5-blazor 1.10.0 → 1.10.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ckeditor5-blazor",
3
- "version": "1.10.0",
3
+ "version": "1.10.1",
4
4
  "description": "CKEditor 5 integration for Blazor",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -136,9 +136,9 @@ export function createEditorBlazorInterop(element: HTMLElement, interop: DotNetI
136
136
  return;
137
137
  }
138
138
 
139
- const editor = await EditorsRegistry.the.waitFor(editorId);
140
-
141
- installImageUploadAdapter(editor, interop);
139
+ EditorsRegistry.the.mountEffect(editorId, (editor) => {
140
+ installImageUploadAdapter(editor, interop);
141
+ });
142
142
  },
143
143
  };
144
144
  }